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
| Careercup |[Permutation Casewise](https://www.careercup.com/question?id=6255535581036544)|[Java](./java/PermuteCasewise.java)|_O(2^n)_|_O(1)_| Medium ||
29
29
| Leetcode |[50. Pow(x, n)](https://leetcode.com/problems/powx-n/description/)|[Java](./java/myPow.java)|_O(n)_|_O(1)_| Medium ||
30
+
| Leetcode |[89. Gray Code](https://leetcode.com/problems/gray-code/description/)|[Java](./java/grayCode.java)|_O(n)_|_O(1)_| Medium ||
30
31
| Leetcode |[137. Single Number II](https://leetcode.com/problems/single-number-ii/description/)|[Java](./java/singleNumberii.java)|_O(n)_|_O(1)_| Medium ||
| Leetcode |[191. Number of 1 Bits](https://leetcode.com/problems/number-of-1-bits/description/)|[Java](./java/hammingWeight.java)|_O(n)_|_O(1)_| Easy ||
@@ -53,6 +54,7 @@ Feel free to submit pull requests, add issues and be a contributer.
53
54
| Leetcode |[121. Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/description/)|[Java](./java/maxProfit.java)|_O(n)_|_O(1)_| Easy ||
| Leetcode |[228. Summary Ranges](https://leetcode.com/problems/summary-ranges/description/)|[Java](./java/summaryRanges.java)|_O(n)_|_O(1)_| Medium ||
56
58
| Leetcode |[311. Sparse Matrix Multiplication](https://leetcode.com/problems/sparse-matrix-multiplication/description/)|[Java](./java/sparseMultiply.java)|_O(m*n*l)_|_O(m*l)_| Medium ||
57
59
| Leetcode |[350. Intersection of Two Arrays II](https://leetcode.com/problems/intersection-of-two-arrays-ii/description/)|[Java](./java/intersect.java)|_O(m+n)_|_O(1)_| Easy ||
@@ -249,6 +251,7 @@ Feel free to submit pull requests, add issues and be a contributer.
249
251
| Leetcode |[75. Sort Colors](https://leetcode.com/problems/sort-colors/description/)|[Java](./java/sortColors.java)|_O(n)_|_O(1)_| Medium ||
250
252
| Leetcode |[147. Insertion Sort List](https://leetcode.com/problems/insertion-sort-list/description/)|[Java](./java/insertionSortList.java)|_O(nlogn)_|_O(1)_| Medium ||
251
253
| Leetcode |[179. Largest Number](https://leetcode.com/problems/largest-number/description/)|[Java](./java/largestNumber.java)|_O(nlogn)_|_O(n)_| Medium ||
254
+
| Leetcode |[280. Wiggle Sort](https://leetcode.com/problems/wiggle-sort/description/)|[Java](./java/wiggleSort.java)|_O(n)_|_O(1)_| Medium ||
252
255
253
256
## Math
254
257
| Website | Title | Solution | Time | Space | Difficulty | Note|
0 commit comments