@@ -166,14 +166,14 @@ LeetCode
166
166
| 73| [ Set Matrix Zeroes] ( https://oj.leetcode.com/problems/set-matrix-zeroes/ ) | [ C++] ( ./algorithms/setMatrixZeroes/setMatrixZeroes.cpp ) | Medium|
167
167
| 72| [ Edit Distance] ( https://oj.leetcode.com/problems/edit-distance/ ) | [ C++] ( ./algorithms/editDistance/editDistance.cpp ) | Hard|
168
168
| 71| [ Simplify Path] ( https://oj.leetcode.com/problems/simplify-path/ ) | [ C++] ( ./algorithms/simplifyPath/simplifyPath.cpp ) | Medium|
169
- | 70| [ Climbing Stairs] ( https://oj.leetcode.com/problems/climbing-stairs/ ) | [ C++] ( ./algorithms/climbStairs/climbStairs.cpp ) | Easy|
169
+ | 70| [ Climbing Stairs] ( https://oj.leetcode.com/problems/climbing-stairs/ ) | [ C++] ( ./algorithms/climbStairs/climbStairs.cpp ) , [ Java ] ( ./algorithms-java/src/dynamicProgramming/climbStairs/climbStairs.java ) | Easy|
170
170
| 69| [ Sqrt(x)] ( https://oj.leetcode.com/problems/sqrtx/ ) | [ C++] ( ./algorithms/sqrt/sqrt.cpp ) | Medium|
171
171
| 68| [ Text Justification] ( https://oj.leetcode.com/problems/text-justification/ ) | [ C++] ( ./algorithms/textJustification/textJustification.cpp ) | Hard|
172
172
| 67| [ Plus One] ( https://oj.leetcode.com/problems/plus-one/ ) | [ C++] ( ./algorithms/plusOne/plusOne.cpp ) | Easy|
173
173
| 66| [ Valid Number] ( https://oj.leetcode.com/problems/valid-number/ ) | [ C++] ( ./algorithms/validNumber/validNumber.cpp ) | Easy|
174
174
| 65| [ Add Binary] ( https://oj.leetcode.com/problems/add-binary/ ) | [ C++] ( ./algorithms/addBinary/addBinary.cpp ) | Easy|
175
175
| 64| [ Merge Two Sorted Lists] ( https://oj.leetcode.com/problems/merge-two-sorted-lists/ ) | [ C++] ( ./algorithms/mergeTwoSortedList/mergeTwoSortedList.cpp ) | Easy|
176
- | 63| [ Minimum Path Sum] ( https://oj.leetcode.com/problems/minimum-path-sum/ ) | [ C++] ( ./algorithms/minimumPathSum/minimumPathSum.cpp ) | Medium|
176
+ | 63| [ Minimum Path Sum] ( https://oj.leetcode.com/problems/minimum-path-sum/ ) | [ C++] ( ./algorithms/minimumPathSum/minimumPathSum.cpp ) , [ Java ] ( ./algorithms-java/src/dynamicProgramming/minimumPathSum/minimumPathSum.java ) | Medium|
177
177
| 62| [ Unique Paths II] ( https://oj.leetcode.com/problems/unique-paths-ii/ ) | [ C++] ( ./algorithms/uniquePaths/uniquePaths.II.cpp ) , [ Java] ( ./algorithms-java/src/dynamicProgramming/uniquePaths/uniquePathsII.java ) | Medium|
178
178
| 61| [ Unique Paths] ( https://oj.leetcode.com/problems/unique-paths/ ) | [ C++] ( ./algorithms/uniquePaths/uniquePaths.cpp ) , [ Java] ( ./algorithms-java/src/dynamicProgramming/uniquePaths/uniquePaths.java ) | Medium|
179
179
| 60| [ Rotate List] ( https://oj.leetcode.com/problems/rotate-list/ ) | [ C++] ( ./algorithms/rotateList/rotateList.cpp ) | Medium|
0 commit comments