├── .gitignore ├── GStar_assignment1.pdf ├── README.md ├── autograder.py ├── autograder_optional.py ├── problem_1.py ├── problem_2.py ├── problem_3.py ├── problem_4.py ├── problem_5.py ├── problem_6.py ├── problem_7.py ├── problem_8.py └── problem_9.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | __pycache__/ -------------------------------------------------------------------------------- /GStar_assignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/GStar_assignment1.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/README.md -------------------------------------------------------------------------------- /autograder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/autograder.py -------------------------------------------------------------------------------- /autograder_optional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/autograder_optional.py -------------------------------------------------------------------------------- /problem_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_1.py -------------------------------------------------------------------------------- /problem_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_2.py -------------------------------------------------------------------------------- /problem_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_3.py -------------------------------------------------------------------------------- /problem_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_4.py -------------------------------------------------------------------------------- /problem_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_5.py -------------------------------------------------------------------------------- /problem_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_6.py -------------------------------------------------------------------------------- /problem_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_7.py -------------------------------------------------------------------------------- /problem_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_8.py -------------------------------------------------------------------------------- /problem_9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/newturing/GStar-Assignment-1/HEAD/problem_9.py --------------------------------------------------------------------------------