Skip to content

Commit 388ff27

Browse files
add problem descriptions
1 parent adb91b1 commit 388ff27

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
|76|[Minimum Window Substring](https://leetcode.com/problems/minimum-window-substring/)|[Solution](../../blob/master/HARD/src/hard/MinimumWindowSubstring.java)|O(n)|O(k)|Hard|Two Pointers
121121
|75|[Sort Colors](https://leetcode.com/problems/sort-colors/)|[Solution](../../blob/master/MEDIUM/src/medium/SortColors.java)|O(n)|O(1)|Medium| Two Pointers
122122
|73|[Set Matrix Zeroes](https://leetcode.com/problems/set-matrix-zeroes/)|[Solution](../../blob/master/MEDIUM/src/medium/SetMatrixZeroes.java)|O(mn)|O(mn)|Medium|
123+
|70|[Climbing Stairs](https://leetcode.com/problems/climbing-stairs/)|[Solution](../../blob/master/EASY/src/easy/ClimbingStairs.java)|O(n)|O(n)|Easy| DP
123124
|68|[Text Justification](https://leetcode.com/problems/text-justification/)|[Solution](../../blob/master/HARD/src/hard/TextJustification.java)|O(n)|O(1)|Hard|
124125
|67|[Add Binary](https://leetcode.com/problems/add-binary/)|[Solution](../../blob/master/EASY/src/easy/AddBinary.java)|O(n)|O(1)|Easy|
125126
|58|[Length of Last Word](https://leetcode.com/problems/length-of-last-word/)|[Solution](../../blob/master/EASY/src/easy/LengthofLastWord.java)|O(n)|O(1)|Easy|

0 commit comments

Comments
 (0)