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
+33-23Lines changed: 33 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,13 @@ Dear LeetCoders! For a better LeetCode problem-solving experience, please visit
4
4
5
5
Hi there! I'm Lane.
6
6
Do you feel that there are too many problems (over 3,450) on the LeetCode and you can't finish them all?
7
-
Or do you forget how to solve the problems you did last time?
7
+
Or do you forget how to solve the problems you did last time?
8
+
8
9
If you can master some solution patterns, this will happen less often.
9
10
10
11
Here, I will provide you with**common problem-solving patterns** so that you don't waste time on problems that are not often tested in interviews.
11
12
12
-
Solutions for languages such as**Python, C++, Java, JavaScript, C#, Go, Ruby**, etc. will alsobe provided. If you have better solutions, welcome to create an issue or PR!
13
+
**Python, C++, Java, JavaScript, C#, Go, Ruby** languages' solutions are provided for every selected LeetCode problem. Other languages' solutions willbe provided in the future. If you have better solutions, welcome to create an issue or PR!
13
14
14
15
##How to use this repo?
15
16
@@ -21,51 +22,55 @@ You can skip the more difficult problems and do them later.
-[49. Group Anagrams](https://leetcoder.net/en/leetcode/49-group-anagrams) was solved in_Python, Ruby_.
44
47
45
48
#String
46
-
-[28. Find the Index of the First Occurrence in a String](en/1-1000/28-find-the-index-of-the-first-occurrence-in-a-string.md) was solved in_Python, JavaScript_.
-[459. Repeated Substring Pattern](en/1-1000/459-repeated-substring-pattern.md) was solved in_Python, JavaScript_.
49
+
-[28. Find the Index of the First Occurrence in a String](en/1-1000/28-find-the-index-of-the-first-occurrence-in-a-string.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_.
-[198. House Robber](en/1-1000/198-house-robber.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_.
67
-
-[213. House Robber II](en/1-1000/213-house-robber-ii.md) was solved in_Python, JavaScript,Go_.
68
-
-[337. House Robber III](en/1-1000/337-house-robber-iii.md) was solved in_Python, JavaScript,Go_ and**2** ways.
72
+
-[213. House Robber II](en/1-1000/213-house-robber-ii.md) was solved in_Python,Java, C++,JavaScript,C#, Go, Ruby_.
73
+
-[337. House Robber III](en/1-1000/337-house-robber-iii.md) was solved in_Python,Java, C++,JavaScript,C#, Go, Ruby_ and**2** ways.
69
74
70
75
##Knapsack Problems
71
76
###0/1 Knapsack
@@ -100,12 +105,17 @@ You can skip the more difficult problems and do them later.
100
105
-[583. Delete Operation for Two Strings](en/1-1000/583-delete-operation-for-two-strings.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_.
-[3494. Find the Minimum Amount of Time to Brew Potions](https://leetcoder.net/en/leetcode/3494-find-the-minimum-amount-of-time-to-brew-potions) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_.
-[84. Largest Rectangle in Histogram](en/1-1000/84-largest-rectangle-in-histogram.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_.
108
116
117
+
118
+
109
119
#Graph Theory
110
120
-[797. All Paths From Source to Target](en/1-1000/797-all-paths-from-source-to-target.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_ and**2** ways.
111
121
-[200. Number of Islands](en/1-1000/200-number-of-islands.md) was solved in_Python, Java, C++, JavaScript, C#, Go, Ruby_ and**3** ways.