(self, id)
| 105 | return j |
| 106 | |
| 107 | def get_title(self, id): |
| 108 | content = self.get_problem_content(id) |
| 109 | if content == None: |
| 110 | print("title not exist:", id) |
| 111 | return str(id) |
| 112 | j = json.loads(content) |
| 113 | return j['data']['question']['translatedTitle'] |
| 114 | |
| 115 | def get_title_with_slug(self, id, slug, paid_only): |
| 116 | content = self.get_problem_content(id) |
no test coverage detected