You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will fetch solution code in the specified language (when available) and include it in your Anki cards or Excel output.
67
+
68
+
Supported languages include: c, cpp, csharp, dart, go, java, javascript, kotlin, python, ruby, rust, scala, swift, and typescript.
69
+
55
70
## 📒 Anki
56
71
When generating an Anki output, the resulting "cards" are saved as a `.txt` file. These cards include three fields:
57
72
1. The front of the study card, containing the question ID, Title, URL, and problem description
58
-
2. The publicly available solutions (and NeetCode solution, if available)
73
+
2. The publicly available solutions (and NeetCode solution or code, if available)
59
74
3. The tags associated with the problem (i.e., if the problem involves a hash map, arrays, etc...)
60
75
61
76
## 📊 Excel
@@ -69,12 +84,83 @@ When generating an Excel output, the resulting questions are saved in an `.xlsx`
69
84
7. Solution links for the problem (if they are reachable)
70
85
8. Companies that have asked this question recently in interviews (if they are reachable)
71
86
87
+
## Custom Templates
88
+
89
+
LeetCode Study Tool supports custom Jinja2 templates for generating Anki cards or other outputs. You can specify your own template file using the `--template` flag:
0 commit comments