We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd7dbc8 + 07f42fa commit e085968Copy full SHA for e085968
leetcode_anki/helpers/leetcode.py
@@ -349,7 +349,9 @@ async def tags(self, problem_slug: str) -> List[str]:
349
List of the tags for this problem (string slugs)
350
"""
351
data = self._get_problem_data(problem_slug)
352
- return list(map(lambda x: x.slug, data.topic_tags))
+ tags = list(map(lambda x: x.slug, data.topic_tags))
353
+ tags.append(data.difficulty)
354
+ return tags
355
356
async def freq_bar(self, problem_slug: str) -> float:
357
0 commit comments