Skip to content

Commit fbfe7fb

Browse files
committed
Fix bug with non-escaped semicolons
1 parent 99ad167 commit fbfe7fb

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.2.1
4+
- Fixed issue with Neetcode titles including semicolons, resulting in ill-formatted Anki cards
5+
36
## 1.2.0
47
- Added Neetcode 150 and Neetcode All to presets
58
- Added support for exporting to Excel

leetcode_study_tool/constants/leetcode_to_neetcode.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"url": "https://youtube.com/watch?v=U4hFQCa1Cq0",
100100
},
101101
"118": {
102-
"title": "Pascal's Triangle - Leetcode 118 - Python",
102+
"title": "Pascal's Triangle - Leetcode 118 - Python",
103103
"url": "https://youtube.com/watch?v=nPVEaB3AjUM",
104104
},
105105
"1189": {
@@ -226,7 +226,7 @@
226226
},
227227
"141": {
228228
"title": (
229-
"Linked List Cycle - Floyd's Tortoise and Hare - Leetcode 141 -"
229+
"Linked List Cycle - Floyd's Tortoise and Hare - Leetcode 141 -"
230230
" Python"
231231
),
232232
"url": "https://youtube.com/watch?v=gBTe7lFR3vc",
@@ -246,7 +246,7 @@
246246
},
247247
"1448": {
248248
"title": (
249-
"Microsoft's Most Asked Question 2021 - Count Good Nodes in a"
249+
"Microsoft's Most Asked Question 2021 - Count Good Nodes in a"
250250
" Binary Tree - Leetcode 1448 - Python"
251251
),
252252
"url": "https://youtube.com/watch?v=7cp5imvDzl4",
@@ -317,7 +317,7 @@
317317
},
318318
"1584": {
319319
"title": (
320-
"Prim's Algorithm - Minimum Spanning Tree - Min Cost to Connect"
320+
"Prim's Algorithm - Minimum Spanning Tree - Min Cost to Connect"
321321
" all Points - Leetcode 1584 - Python"
322322
),
323323
"url": "https://youtube.com/watch?v=f7JOBJIC-NA",
@@ -698,7 +698,7 @@
698698
},
699699
"287": {
700700
"title": (
701-
"Find the Duplicate Number - Floyd's Cycle Detection - Leetcode"
701+
"Find the Duplicate Number - Floyd's Cycle Detection - Leetcode"
702702
" 287 - Python"
703703
),
704704
"url": "https://youtube.com/watch?v=wjYnzkAhcNk",
@@ -1177,7 +1177,7 @@
11771177
"url": "https://youtube.com/watch?v=7FCemBxvGw0",
11781178
},
11791179
"743": {
1180-
"title": "Network Delay Time - Dijkstra's algorithm - Leetcode 743",
1180+
"title": "Network Delay Time - Dijkstra's algorithm - Leetcode 743",
11811181
"url": "https://youtube.com/watch?v=EaphyqKU4PQ",
11821182
},
11831183
"746": {
@@ -1218,7 +1218,7 @@
12181218
},
12191219
"778": {
12201220
"title": (
1221-
"Swim in Rising Water - Dijkstra's Algorithm - Leetcode 778 -"
1221+
"Swim in Rising Water - Dijkstra's Algorithm - Leetcode 778 -"
12221222
" Python"
12231223
),
12241224
"url": "https://youtube.com/watch?v=amvrKlMLuGY",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "leetcode-study-tool"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "A tool for studying Leetcode with Python"
99
authors = [{name="John Sutor", email="johnsutor3@gmail.com" }]
1010
license = {file = "LICENSE.txt"}

0 commit comments

Comments
 (0)