├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── doubt.md │ └── helper-issue.md └── PULL_REQUEST_TEMPLATE.md ├── README.md ├── main.ipynb ├── random_rect.py └── requirements.txt /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doubt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/.github/ISSUE_TEMPLATE/doubt.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/helper-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/.github/ISSUE_TEMPLATE/helper-issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/README.md -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/main.ipynb -------------------------------------------------------------------------------- /random_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/random_rect.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACM-VIT/Fill-In-the-Blanks/HEAD/requirements.txt --------------------------------------------------------------------------------