Challenges
Mistakes/Failures
Enjoyed
Leadership
Conflicts
What You'd Do Differently
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# =====================Prob1===================== | |
''' | |
Given: | |
College Class (an Abstract class) | |
Person Class (an Abstract class) | |
To Implement: | |
Prof(Person): | |
IIT(College): | |
class College(ABC): |
- How to convey doctor's terms to normal person.
- Person has document, it submits online. The document is scanned and all technical words are filtered out using various ML techniques.
- Follow up would be to make it generic, i.e. not only work for english, but for various languages
- If filtered word exists in database, its meaning, symptoms, possible solutions, etc are displayed in form of visuals using various pics/ animations etc If it doesn't exists, use web scraping/ api etc to get them, store in database (for further queries) and display.
* count of correct and wrong answer is kept in session.
* If user gives Wrong answer of any problem, next problem is of lower difficulty (randomly selected from set of problems of lower difficulty)
* If user gives correct answer, next problem is of higher difficulty (randomly selected)
* Timer is set using Javascript on frontend to automatically submit after fixed time.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.