├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── ----bug-report.md │ ├── ---feature-request.md │ └── ---say-thank-you.md ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── coderunner ├── __init__.py └── coderunner.py ├── demo.py ├── docs ├── about.md ├── changelog.md ├── index.md ├── installation.md ├── judge0.md └── usage.md ├── mkdocs.yml ├── ppp ├── requirements.txt ├── setup.py ├── testfiles ├── input │ ├── input.txt │ ├── input2.txt │ ├── input3.txt │ └── input4.txt ├── output │ ├── output.txt │ ├── output2.txt │ ├── output3.txt │ ├── output4.txt │ ├── output5.txt │ ├── output6.txt │ ├── output7.txt │ └── output8.txt ├── test_c++.cpp ├── test_c++_input.cpp ├── test_c.c ├── test_c_input.c ├── test_java.java ├── test_java_input.java ├── test_python.py └── test_python_input.py └── tests.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/----bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.github/ISSUE_TEMPLATE/----bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.github/ISSUE_TEMPLATE/---feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---say-thank-you.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.github/ISSUE_TEMPLATE/---say-thank-you.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/_config.yml -------------------------------------------------------------------------------- /coderunner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/coderunner/__init__.py -------------------------------------------------------------------------------- /coderunner/coderunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/coderunner/coderunner.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/demo.py -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/judge0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/judge0.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/docs/usage.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /ppp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/ppp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | isort==4.3.21 2 | black 3 | flake8 4 | pylint 5 | python-dotenv 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/setup.py -------------------------------------------------------------------------------- /testfiles/input/input.txt: -------------------------------------------------------------------------------- 1 | 232 -------------------------------------------------------------------------------- /testfiles/input/input2.txt: -------------------------------------------------------------------------------- 1 | 12 33 -------------------------------------------------------------------------------- /testfiles/input/input3.txt: -------------------------------------------------------------------------------- 1 | 121 -------------------------------------------------------------------------------- /testfiles/input/input4.txt: -------------------------------------------------------------------------------- 1 | Shruti 2 | 50000 -------------------------------------------------------------------------------- /testfiles/output/output.txt: -------------------------------------------------------------------------------- 1 | 1 4 9 16 2 | 25 36 49 3 | 64 81 4 | 100 -------------------------------------------------------------------------------- /testfiles/output/output2.txt: -------------------------------------------------------------------------------- 1 | The number is a palindrome! -------------------------------------------------------------------------------- /testfiles/output/output3.txt: -------------------------------------------------------------------------------- 1 | Sum of the numbers = 45 -------------------------------------------------------------------------------- /testfiles/output/output4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/output/output4.txt -------------------------------------------------------------------------------- /testfiles/output/output5.txt: -------------------------------------------------------------------------------- 1 | Not eligible for loan! -------------------------------------------------------------------------------- /testfiles/output/output6.txt: -------------------------------------------------------------------------------- 1 | Hello, World! -------------------------------------------------------------------------------- /testfiles/output/output7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/output/output7.txt -------------------------------------------------------------------------------- /testfiles/output/output8.txt: -------------------------------------------------------------------------------- 1 | Factorial = 362880 -------------------------------------------------------------------------------- /testfiles/test_c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_c++.cpp -------------------------------------------------------------------------------- /testfiles/test_c++_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_c++_input.cpp -------------------------------------------------------------------------------- /testfiles/test_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_c.c -------------------------------------------------------------------------------- /testfiles/test_c_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_c_input.c -------------------------------------------------------------------------------- /testfiles/test_java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_java.java -------------------------------------------------------------------------------- /testfiles/test_java_input.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_java_input.java -------------------------------------------------------------------------------- /testfiles/test_python.py: -------------------------------------------------------------------------------- 1 | print("Hello, World!") 2 | -------------------------------------------------------------------------------- /testfiles/test_python_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/testfiles/test_python_input.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeclassroom/CodeRunner/HEAD/tests.py --------------------------------------------------------------------------------