mirror of
https://github.com/Xevion/leetcode.git
synced 2026-01-31 06:24:46 -06:00
Add tags column (demo)
maybe so, maybe not
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
This repository contains my solutions to various problems on [LeetCode](https://leetcode.com/).
|
||||
|
||||
Below is the full table containing all the problems I have solved so far. The table is [automatically generated](./.generate/main.py)automatically generated.
|
||||
| # | Title | Solution | Difficulty |
|
||||
|---| ----- | -------- | ---------- |
|
||||
| # | Title | Solution | Difficulty | Tags |
|
||||
|---| ----- | -------- | ---------- | ---- |
|
||||
{{ rows }}
|
||||
|
||||
<sub>
|
||||
|
||||
@@ -91,6 +91,7 @@ def main():
|
||||
f"[{question.title}]({question.url})",
|
||||
solutions,
|
||||
question.difficulty,
|
||||
", ".join(f"[{tag.name}](/categories/{tag.slug.upper()}.md)" for tag in question.tags),
|
||||
]
|
||||
|
||||
row = "| " + " | ".join(map(str, columns)) + " |"
|
||||
|
||||
Reference in New Issue
Block a user