Skip to content

Commit 1220a74

Browse files
geon0325Hai Hoang Dang
authored andcommitted
Fixed links in README files (keon#312)
* Update README_CN.md * Update README.md * Update README_GE.md * Update README_JP.md * Update README_KR.md
1 parent 3e14809 commit 1220a74

File tree

5 files changed

+23
-22
lines changed

5 files changed

+23
-22
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ If you want to uninstall algorithms, it is as simple as:
6262
- [merge_intervals](algorithms/arrays/merge_intervals.py)
6363
- [missing_ranges](algorithms/arrays/missing_ranges.py)
6464
- [plus_one](algorithms/arrays/plus_one.py)
65-
   - [rotate_array](algorithms/arrays/rotate_array.py)
66-
- [summary_ranges](algorithms/arrays/summary_ranges.py)
65+
   - [rotate](algorithms/arrays/rotate.py)
66+
- [summarize_ranges](algorithms/arrays/summarize_ranges.py)
6767
- [three_sum](algorithms/arrays/three_sum.py)
6868
- [two_sum](algorithms/arrays/two_sum.py)
69-
- [move_zeros_to_end](algorithms/arrays/move_zeros_to_end.py)
69+
- [move_zeros](algorithms/arrays/move_zeros.py)
7070
- [backtrack](algorithms/backtrack)
7171
- [general_solution.md](algorithms/backtrack/)
7272
- [anagram](algorithms/backtrack/anagram.py)
@@ -234,7 +234,7 @@ If you want to uninstall algorithms, it is as simple as:
234234
- [selection_sort](algorithms/sort/selection_sort.py)
235235
- [shell_sort](algorithms/sort/shell_sort.py)
236236
- [sort_colors](algorithms/sort/sort_colors.py)
237-
- [topsort](algorithms/sort/topsort.py)
237+
- [top_sort](algorithms/sort/top_sort.py)
238238
- [wiggle_sort](algorithms/sort/wiggle_sort.py)
239239
- [stack](algorithms/stack)
240240
- [longest_abs_path](algorithms/stack/longest_abs_path.py)

README_CN.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@ pip3 uninstall -y algorithms
7575
- [merge_intervals:合并重叠间隔](algorithms/arrays/merge_intervals.py)
7676
- [missing_ranges:遗失的范围](algorithms/arrays/missing_ranges.py)
7777
- [plus_one:加一运算](algorithms/arrays/plus_one.py)
78-
- [rotate_array:反转数组](algorithms/arrays/rotate_array.py)
79-
- [summary_ranges:数组范围](algorithms/arrays/summary_ranges.py)
78+
- [rotate:反转数组](algorithms/arrays/rotate.py)
79+
- [summarize_ranges:数组范围](algorithms/arrays/summarize_ranges.py)
8080
- [three_sum:三数和为零](algorithms/arrays/three_sum.py)
8181
- [two_sum:两数和](algorithms/arrays/two_sum.py)
82-
- [move_zeros_to_end: 0后置问题](algorithms/arrays/move_zeros_to_end.py)
82+
- [move_zeros: 0后置问题](algorithms/arrays/move_zeros.py)
8383
- [backtrack:回溯](algorithms/backtrack)
8484
- [general_solution.md:一般方法](algorithms/backtrack/)
8585
- [anagram:同字母异序词](algorithms/backtrack/anagram.py)
@@ -216,7 +216,7 @@ pip3 uninstall -y algorithms
216216
- [selection_sort:选择排序](algorithms/sort/selection_sort.py)
217217
- [shell_sort](algorithms/sort/shell_sort.py)
218218
- [sort_colors:颜色排序](algorithms/sort/sort_colors.py)
219-
- [topsort:top排序](algorithms/sort/topsort.py)
219+
- [top_sort:top排序](algorithms/sort/top_sort.py)
220220
- [wiggle_sort:摇摆排序](algorithms/sort/wiggle_sort.py)
221221
- [stack:栈](algorithms/stack)
222222
- [longest_abs_path:最长相对路径](algorithms/stack/longest_abs_path.py)

README_GE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ Um das Projekt zu deinstallieren tippen Sie folgendes:
6969
- [merge_intervals](algorithms/arrays/merge_intervals.py)
7070
- [missing_ranges](algorithms/arrays/missing_ranges.py)
7171
- [plus_one](algorithms/arrays/plus_one.py)
72-
   - [rotate_array](algorithms/arrays/rotate_array.py)
73-
- [summary_ranges](algorithms/arrays/summary_ranges.py)
72+
   - [rotate](algorithms/arrays/rotate.py)
73+
- [summarize_ranges](algorithms/arrays/summarize_ranges.py)
7474
- [three_sum](algorithms/arrays/three_sum.py)
7575
- [two_sum](algorithms/arrays/two_sum.py)
76-
- [move_zeros_to_end](algorithms/arrays/move_zeros_to_end.py)
76+
- [move_zeros](algorithms/arrays/move_zeros.py)
7777
- [backtrack](algorithms/backtrack)
7878
- [general_solution.md](algorithms/backtrack/)
7979
- [anagram](algorithms/backtrack/anagram.py)
@@ -241,7 +241,7 @@ Um das Projekt zu deinstallieren tippen Sie folgendes:
241241
- [selection_sort](algorithms/sort/selection_sort.py)
242242
- [shell_sort](algorithms/sort/shell_sort.py)
243243
- [sort_colors](algorithms/sort/sort_colors.py)
244-
- [topsort](algorithms/sort/topsort.py)
244+
- [top_sort](algorithms/sort/top_sort.py)
245245
- [wiggle_sort](algorithms/sort/wiggle_sort.py)
246246
- [stack](algorithms/stack)
247247
- [longest_abs_path](algorithms/stack/longest_abs_path.py)

README_JP.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ if __name__ == "__main__":
5454
- [flatten](algorithms/arrays/flatten.py)
5555
- [garage](algorithms/arrays/garage.py)
5656
- [josephus_problem](algorithms/arrays/josephus.py)
57-
- [max_ones_index](algorithms/arrays/max_ones_index.py)
5857
- [longest_non_repeat](algorithms/arrays/longest_non_repeat.py/)
58+
- [max_ones_index](algorithms/arrays/max_ones_index.py)
5959
- [merge_intervals](algorithms/arrays/merge_intervals.py)
6060
- [missing_ranges](algorithms/arrays/missing_ranges.py)
6161
- [plus_one](algorithms/arrays/plus_one.py)
62-
- [rotate_array](algorithms/arrays/rotate_array.py)
63-
- [summary_ranges](algorithms/arrays/summary_ranges.py)
62+
   - [rotate](algorithms/arrays/rotate.py)
63+
- [summarize_ranges](algorithms/arrays/summarize_ranges.py)
6464
- [three_sum](algorithms/arrays/three_sum.py)
6565
- [two_sum](algorithms/arrays/two_sum.py)
66-
- [move_zeros_to_end](algorithms/arrays/move_zeros_to_end.py)
66+
- [move_zeros](algorithms/arrays/move_zeros.py)
6767
- [backtrack : バックトラッキング](algorithms/backtrack)
6868
- [general_solution.md](algorithms/backtrack/)
6969
- [anagram](algorithms/backtrack/anagram.py)
@@ -231,7 +231,7 @@ if __name__ == "__main__":
231231
- [selection_sort](algorithms/sort/selection_sort.py)
232232
- [shell_sort](algorithms/sort/shell_sort.py)
233233
- [sort_colors](algorithms/sort/sort_colors.py)
234-
- [topsort](algorithms/sort/topsort.py)
234+
- [top_sort](algorithms/sort/top_sort.py)
235235
- [wiggle_sort](algorithms/sort/wiggle_sort.py)
236236
- [stack : スタック](algorithms/stack)
237237
- [longest_abs_path](algorithms/stack/longest_abs_path.py)

README_KR.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,17 @@ if __name__ == "__main__":
5252
- [delete_nth](algorithms/arrays/delete_nth.py)
5353
- [flatten](algorithms/arrays/flatten.py)
5454
- [garage](algorithms/arrays/garage.py)
55-
- [josephus_problem](algorithms/arrays/josephus_problem.py)
55+
- [josephus_problem](algorithms/arrays/josephus.py)
5656
- [longest_non_repeat](algorithms/arrays/longest_non_repeat.py/)
57+
- [max_ones_index](algorithms/arrays/max_ones_index.py)
5758
- [merge_intervals](algorithms/arrays/merge_intervals.py)
5859
- [missing_ranges](algorithms/arrays/missing_ranges.py)
5960
- [plus_one](algorithms/arrays/plus_one.py)
60-
- [rotate_array](algorithms/arrays/rotate_array.py)
61-
- [summary_ranges](algorithms/arrays/summary_ranges.py)
61+
   - [rotate](algorithms/arrays/rotate.py)
62+
- [summarize_ranges](algorithms/arrays/summarize_ranges.py)
6263
- [three_sum](algorithms/arrays/three_sum.py)
6364
- [two_sum](algorithms/arrays/two_sum.py)
64-
- [move_zeros_to_end](algorithms/arrays/move_zeros_to_end.py)
65+
- [move_zeros](algorithms/arrays/move_zeros.py)
6566
- [backtrack : 백트래킹](algorithms/backtrack)
6667
- [general_solution.md](algorithms/backtrack/)
6768
- [anagram](algorithms/backtrack/anagram.py)
@@ -225,7 +226,7 @@ if __name__ == "__main__":
225226
- [radix_sort](algorithms/sort/radix_sort.py)
226227
- [selection_sort](algorithms/sort/selection_sort.py)
227228
- [sort_colors](algorithms/sort/sort_colors.py)
228-
- [topsort](algorithms/sort/topsort.py)
229+
- [top_sort](algorithms/sort/top_sort.py)
229230
- [wiggle_sort](algorithms/sort/wiggle_sort.py)
230231
- [stack : 스택](algorithms/stack)
231232
- [longest_abs_path](algorithms/stack/longest_abs_path.py)

0 commit comments

Comments
 (0)