(self, id)
| 77 | return v |
| 78 | |
| 79 | def get_level(self, id): |
| 80 | content = self.get_problem_content(id) |
| 81 | if content == None: |
| 82 | print("title not exist:", id) |
| 83 | return str(id) |
| 84 | j = json.loads(content) |
| 85 | return j['data']['question']['difficulty'] |
| 86 | |
| 87 | def check_finish(self, id): |
| 88 | for k in self.finished: |
no test coverage detected