├── .gitattributes ├── LICENSE ├── README.md ├── README.pdf ├── auxiliares └── run.py ├── cp-install.sh ├── scripts ├── cp-cpp.sh ├── cp-get-notebook.sh ├── cp-help.sh ├── cp-kotlin.sh ├── cp-notebook.sh ├── cp-propuesta.sh ├── cp-ptoolkit.py ├── cp-python.sh ├── cp-template.sh ├── cp-update-notebooks.sh └── cp-update.sh └── template-propuesta ├── casos └── generados │ └── gen.py ├── config.json ├── corrector.cpp ├── enunciado.md ├── kits └── README.md └── soluciones └── 00solucion.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/README.pdf -------------------------------------------------------------------------------- /auxiliares/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/auxiliares/run.py -------------------------------------------------------------------------------- /cp-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/cp-install.sh -------------------------------------------------------------------------------- /scripts/cp-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-cpp.sh -------------------------------------------------------------------------------- /scripts/cp-get-notebook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-get-notebook.sh -------------------------------------------------------------------------------- /scripts/cp-help.sh: -------------------------------------------------------------------------------- 1 | code "$CP/README.pdf" -------------------------------------------------------------------------------- /scripts/cp-kotlin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-kotlin.sh -------------------------------------------------------------------------------- /scripts/cp-notebook.sh: -------------------------------------------------------------------------------- 1 | cd "$CP/notebook" 2 | code . -------------------------------------------------------------------------------- /scripts/cp-propuesta.sh: -------------------------------------------------------------------------------- 1 | cp -r -p $CP/template-propuesta "$1" -------------------------------------------------------------------------------- /scripts/cp-ptoolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-ptoolkit.py -------------------------------------------------------------------------------- /scripts/cp-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-python.sh -------------------------------------------------------------------------------- /scripts/cp-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-template.sh -------------------------------------------------------------------------------- /scripts/cp-update-notebooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-update-notebooks.sh -------------------------------------------------------------------------------- /scripts/cp-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/scripts/cp-update.sh -------------------------------------------------------------------------------- /template-propuesta/casos/generados/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/template-propuesta/casos/generados/gen.py -------------------------------------------------------------------------------- /template-propuesta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/template-propuesta/config.json -------------------------------------------------------------------------------- /template-propuesta/corrector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/template-propuesta/corrector.cpp -------------------------------------------------------------------------------- /template-propuesta/enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/template-propuesta/enunciado.md -------------------------------------------------------------------------------- /template-propuesta/kits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LautaroLasorsa/competitive-programming-suite/HEAD/template-propuesta/kits/README.md -------------------------------------------------------------------------------- /template-propuesta/soluciones/00solucion.cpp: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------