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
| Leetcode |[12. Integer to Roman](https://leetcode.com/problems/integer-to-roman/description/)|[Java](./java/intToRoman.java)|_O(n)_|_O(1)_| Medium ||
43
43
| Leetcode |[31. Next Permutation](https://leetcode.com/problems/next-permutation/description/)|[Java](./java/nextPermutation.java)|_O(n)_|_O(1)_| Easy ||
44
+
| Leetcode |[39. Combination Sum](https://leetcode.com/problems/combination-sum/description/)|[Java](./java/combinationSum.java)|_O(2^n)_|_O(1)_| Medium ||
45
+
| Leetcode |[40. Combination Sum II](https://leetcode.com/problems/combination-sum-ii/description/)|[Java](./java/combinationSumii.java)|_O(2^n)_|_O(1)_| Medium ||
44
46
| Leetcode |[46. Permutations](https://leetcode.com/problems/permutations/description/)|[Java](./java/permute.java)|_O(2^n)_|_O(1)_| Medium ||
45
47
| Leetcode |[47. Permutations II](https://leetcode.com/problems/permutations-ii/description/)|[Java](./java/permuteUnique.java)|_O(2^n)_|_O(1)_| Medium ||
46
48
| Leetcode |[66. Plus One](https://leetcode.com/problems/plus-one/description/)|[Java](./java/plusOne.java)|_O(n)_|_O(1)_| Easy ||
@@ -75,6 +77,7 @@ Feel free to submit pull requests, add issues and be a contributer.
| Leetcode |[131. Palindrome Partitioning](https://leetcode.com/problems/palindrome-partitioning/description/)|[Java](./java/PalindromePartition.java)|_O(2^n)_|_O(1)_| Medium ||
78
81
| Leetcode |[139. Word Break](https://leetcode.com/problems/word-break/description/)|[Java](./java/wordBreak.java)|_O(n^2)_|_O(n)_| Medium ||
79
82
| Leetcode |[151. Reverse Words in a String](https://leetcode.com/problems/reverse-words-in-a-string/description/)|[Java](./java/reverseWords1.java)|_O(n)_|_O(1)_| Easy ||
80
83
| Leetcode |[165. Compare Version Numbers](https://leetcode.com/problems/compare-version-numbers/description/)|[Java](./java/compareVersion.java)|_O(n)_|_O(1)_| Medium ||
0 commit comments