Add tags column (demo)

maybe so, maybe not
This commit is contained in:
2023-10-08 20:03:35 -05:00
parent dfae224f7e
commit 28196dcdec
3 changed files with 22 additions and 21 deletions
+2 -2
View File
@@ -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>
+1
View File
@@ -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)) + " |"