File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ I'll keep updating for full summary and better solutions. Stay tuned for updates
62
62
16 | [ 3 Sum Closest] ( https://leetcode.com/problems/3sum-closest/ ) | [ C++] ( ./C++/3sum-closest.cpp ) [ Python] ( ./Python/3sum-closest.py ) | _ O(n^2)_ | _ O(1)_ | Medium ||
63
63
26 | [ Remove Duplicates from Sorted Array] ( https://leetcode.com/problems/remove-duplicates-from-sorted-array/ ) | [ C++] ( ./C++/remove-duplicates-from-sorted-array.cpp ) [ Python] ( ./Python/remove-duplicates-from-sorted-array.py ) | _ O(n)_ | _ O(1)_ | Easy ||
64
64
27 | [ Remove Element] ( https://leetcode.com/problems/remove-element/ ) | [ C++] ( ./C++/remove-element.cpp ) [ Python] ( ./Python/remove-element.py ) | _ O(n)_ | _ O(1)_ | Easy ||
65
- 31 | [ Next Permutation] ( https://leetcode.com/problems/next-permutation/ ) | [ Python] ( ./Python/next-permutation.py ) | _ O(n)_ | _ O(1)_ | Medium || Tricky
65
+ 31 | [ Next Permutation] ( https://leetcode.com/problems/next-permutation/ ) | [ C++ ] ( ./C++/next-permutation.cpp ) [ Python] ( ./Python/next-permutation.py ) | _ O(n)_ | _ O(1)_ | Medium || Tricky
66
66
41 | [ First Missing Positive] ( https://leetcode.com/problems/first-missing-positive/ ) | [ Python] ( ./Python/first-missing-positive.py ) | _ O(n)_ | _ O(1)_ | Hard || Tricky
67
67
48 | [ Rotate Image] ( https://leetcode.com/problems/rotate-image/ ) | [ Python] ( ./Python/rotate-image.py ) | _ O(n^2)_ | _ O(1)_ | Medium ||
68
68
54 | [ Spiral Matrix] ( https://leetcode.com/problems/spiral-matrix/ ) | [ C++] ( ./C++/spiral-matrix.cpp ) [ Python] ( ./Python/spiral-matrix.py ) | _ O(m * n)_ | _ O(1)_ | Medium ||
You can’t perform that action at this time.
0 commit comments