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
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,14 +17,15 @@ Each problem has its own directory containing:
17
17
| 3 |[Longest Substring Without Repeating Characters](Longest%20Substring%20Without%20Repeating%20Characters)| Medium |[Java](Longest%20Substring%20Without%20Repeating%20Characters/Solution.java)| Hash Table, String, Sliding Window |
18
18
| 4 |[Median of Two Sorted Arrays](Median%20of%20Two%20Sorted%20Arrays)| Hard |[Java](Median%20of%20Two%20Sorted%20Arrays/Solution.java)| Array, Binary Search, Divide and Conquer |
19
19
| 5 |[Longest Palindromic Substring](Longest%20Palindromic%20Substring)| Medium |[Java](Longest%20Palindromic%20Substring/Solution.java)| Two Pointers, String, Dynamic Programming |
20
+
| 214 |[Shortest Palindrome](Shortest%20Palindrome)| Hard |[Java](Shortest%20Palindrome/Solution.java)| String, Rolling Hash, String Matching, Hash Function |
20
21
| 2924 |[Find Champion II](Find%20Champion%20II)| Medium |[Java](Find%20Champion%20II/Solution.java)| Graph |
21
22
22
23
## Categories
23
24
24
25
### By Difficulty
25
26
- Easy: 1
26
27
- Medium: 4
27
-
- Hard: 1
28
+
- Hard: 2
28
29
29
30
### By Topics
30
31
- Array Problems
@@ -36,6 +37,7 @@ Each problem has its own directory containing:
36
37
- String Problems
37
38
-[Longest Substring Without Repeating Characters](Longest%20Substring%20Without%20Repeating%20Characters)
0 commit comments