├── .gitignore ├── LICENSE ├── README.md └── src ├── Procfile ├── app.py ├── driver.py ├── last_laugh.py ├── name_of_user.py ├── templates ├── index.html └── styles.css ├── user_ranks.py └── user_ratings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/README.md -------------------------------------------------------------------------------- /src/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn -b:$PORT app:app 2 | -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/app.py -------------------------------------------------------------------------------- /src/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/driver.py -------------------------------------------------------------------------------- /src/last_laugh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/last_laugh.py -------------------------------------------------------------------------------- /src/name_of_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/name_of_user.py -------------------------------------------------------------------------------- /src/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/templates/index.html -------------------------------------------------------------------------------- /src/templates/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/templates/styles.css -------------------------------------------------------------------------------- /src/user_ranks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/user_ranks.py -------------------------------------------------------------------------------- /src/user_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohitthapliyal2000/codechef-rank-comparator/HEAD/src/user_ratings.py --------------------------------------------------------------------------------