Skip to content

Commit 6b48c2c

Browse files
committed
correct 118 folder
1 parent 9bcd786 commit 6b48c2c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

solutions/table_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def print_table(problem_map):
8282

8383
for long_name, solution_info in problem_map:
8484
link = 'https://leetcode.com/problems/'
85-
link += re.sub('_', '-', re.sub('\(|\)', '', long_name[4:])) + '/'
85+
link += re.sub('_', '-', re.sub('\(|\)|\'', '', long_name[4:])) + '/'
8686

8787
problem_id = long_name[:3]
8888
problem_name = re.sub('_', ' ', long_name[4:])

0 commit comments

Comments
 (0)