Create a working model (some rest-api especially for plag checking).
Mention that much better alternatives exist with some pay. e.g.
| # =====================Prob1===================== | |
| ''' | |
| Given: | |
| College Class (an Abstract class) | |
| Person Class (an Abstract class) | |
| To Implement: | |
| Prof(Person): | |
| IIT(College): | |
| class College(ABC): |
| from __future__ import division, print_function | |
| # update main and solve function accordingly | |
| # ============================ Your code starts ================================= | |
| def solve(): | |
| pass | |
| def main(): | |
| tests = 1 | |
| tests = int(input().strip()) | |
| for test in range(tests): |