gitextract_f3v2cmdo/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── how_to_participate.md ├── resources/ │ └── instances/ │ ├── problem_01/ │ │ ├── exemplo_01.txt │ │ ├── exemplo_02.txt │ │ ├── exemplo_03.txt │ │ └── resultados.txt │ ├── problem_02/ │ │ ├── exemplo_01.txt │ │ ├── exemplo_02.txt │ │ ├── exemplo_03.txt │ │ └── resultados.txt │ └── problem_03/ │ └── results.txt └── submissions/ ├── .gitkeep ├── danielsalles/ │ ├── README.md │ └── problema-1.cpp ├── devmessias_01_numba_AOT/ │ ├── Makefile │ ├── README.md │ ├── aot/ │ │ ├── knapsack.py │ │ └── setup.py │ ├── exemplo_01.txt │ ├── exemplo_02.txt │ ├── exemplo_03.txt │ ├── problem_01.py │ └── requirements.txt ├── diogosm/ │ ├── Dockerfile │ ├── README.md │ ├── exemplo_01.txt │ ├── exemplo_02.txt │ ├── exemplo_03.txt │ ├── problema-1.py │ ├── resultados.txt │ └── run.sh ├── gabrielng-rj99/ │ ├── Problema_1/ │ │ ├── Python/ │ │ │ ├── Dockerfile │ │ │ ├── ReadMe.md │ │ │ ├── examples/ │ │ │ │ ├── exemplo_01.txt │ │ │ │ ├── exemplo_02.txt │ │ │ │ └── exemplo_03.txt │ │ │ ├── handmade_tests/ │ │ │ │ ├── handmade_tests.txt │ │ │ │ ├── longruntest.txt │ │ │ │ ├── longruntest2.txt │ │ │ │ ├── longruntest3.txt │ │ │ │ ├── longruntest4.txt │ │ │ │ ├── longruntest5.txt │ │ │ │ ├── test01_03.txt │ │ │ │ ├── test02_03.txt │ │ │ │ ├── test03.1_03.txt │ │ │ │ ├── test03_03.txt │ │ │ │ ├── test04_03.txt │ │ │ │ └── test05_03.txt │ │ │ ├── problema-1.py │ │ │ ├── run_commands.sh │ │ │ ├── runtime.sh │ │ │ └── test_hyperfine.sh │ │ └── Rust/ │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ ├── ReadMe.md │ │ ├── examples/ │ │ │ ├── exemplo_01.txt │ │ │ ├── exemplo_02.txt │ │ │ └── exemplo_03.txt │ │ ├── handmade_tests/ │ │ │ ├── handmade_tests.txt │ │ │ ├── longruntest.txt │ │ │ ├── longruntest2.txt │ │ │ ├── longruntest3.txt │ │ │ ├── longruntest4.txt │ │ │ ├── longruntest5.txt │ │ │ ├── test01_03.txt │ │ │ ├── test02_03.txt │ │ │ ├── test03.1_03.txt │ │ │ ├── test03_03.txt │ │ │ ├── test04_03.txt │ │ │ └── test05_03.txt │ │ ├── run_commands.sh │ │ └── src/ │ │ └── main.rs │ └── Problema_2/ │ └── Python/ │ ├── Dockerfile │ ├── ReadMe.md │ ├── examples/ │ │ ├── exemplo_01.txt │ │ ├── exemplo_02.txt │ │ └── exemplo_03.txt │ ├── problema-2.py │ ├── run_commands.sh │ └── runtime.sh ├── gbpagano/ │ ├── Cargo.toml │ ├── README.md │ ├── exemplo.txt │ └── src/ │ └── main.rs ├── gutogalego/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── main.rs ├── gutogalego__2/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── main.rs ├── gutogalego__3/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ └── main.rs ├── jaiaani/ │ └── problema_01/ │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── project.clj │ ├── resources/ │ │ └── input/ │ │ ├── example1.txt │ │ ├── example2.txt │ │ ├── example3.txt │ │ └── results.txt │ ├── src/ │ │ └── plantation_profit/ │ │ ├── core.clj │ │ └── english_core.clj │ └── test/ │ └── plantation_profit/ │ └── core_test.clj ├── jojodev/ │ ├── README.md │ └── problema-1.py ├── juanplopes/ │ ├── .gitignore │ ├── README.md │ └── problema-1.cpp ├── marcosvile/ │ ├── Dockerfile │ ├── Readme.md │ └── problema-1.sh ├── olegon/ │ ├── .gitignore │ ├── README.md │ ├── compile-and-run.sh │ └── main.cpp ├── ryrden/ │ ├── README.md │ ├── go.mod │ └── ryrden.go ├── wmsbill/ │ ├── .nvmrc │ ├── README.md │ └── problema_01.js └── zeroskullx/ ├── .nvmrc ├── .temp ├── README.md ├── problema-01.js └── test.txt