File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 178
178
909 | [ Snakes and Ladders] ( https://leetcode.com/problems/snakes-and-ladders/ ) | [ C++] ( ./C++/snakes-and-ladders.cpp ) [ Python] ( ./Python/snakes-and-ladders.py ) | _ O(n^2)_ | _ O(n^2)_ | Medium ||
179
179
915 | [ Partition Array into Disjoint Intervals] ( https://leetcode.com/problems/partition-array-into-disjoint-intervals/ ) | [ C++] ( ./C++/partition-array-into-disjoint-intervals.cpp ) [ Python] ( ./Python/partition-array-into-disjoint-intervals.py ) | _ O(n)_ | _ O(n)_ | Medium ||
180
180
918 | [ Maximum Sum Circular Subarray] ( https://leetcode.com/problems/maximum-sum-circular-subarray/ ) | [ C++] ( ./C++/maximum-sum-circular-subarray.cpp ) [ Python] ( ./Python/maximum-sum-circular-subarray.py ) | _ O(n)_ | _ O(1)_ | Medium ||
181
+ 921 | [ Minimum Add to Make Parentheses Valid] ( https://leetcode.com/problems/minimum-add-to-make-parentheses-valid/ ) | [ C++] ( ./C++/minimum-add-to-make-parentheses-valid.cpp ) [ Python] ( ./Python/minimum-add-to-make-parentheses-valid.py ) | _ O(n)_ | _ O(1)_ | Medium ||
182
+ 922 | [ Sort Array By Parity II] ( https://leetcode.com/problems/sort-array-by-parity-ii/ ) | [ C++] ( ./C++/sort-array-by-parity-ii.cpp ) [ Python] ( ./Python/sort-array-by-parity-ii.py ) | _ O(n)_ | _ O(1)_ | Easy ||
183
+ 923 | [ 3Sum With Multiplicity] ( https://leetcode.com/problems/3sum-with-multiplicity/ ) | [ C++] ( ./C++/3sum-with-multiplicity.cpp ) [ Python] ( ./Python/3sum-with-multiplicity.py ) | _ O(n^2)_ | _ O(n)_ | Medium ||
181
184
182
185
## String
183
186
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
921
924
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
922
925
| -----| ---------------- | --------------- | --------------- | --------------- | ------------- | --------------| -----|
923
926
765 | [ Couples Holding Hands] ( https://leetcode.com/problems/couples-holding-hands/ ) | [ C++] ( ./C++/couples-holding-hands.cpp ) [ Python] ( ./Python/couples-holding-hands.py ) | _ O(n)_ | _ O(n)_ | Hard |||
924
-
927
+ 924 | [ Minimize Malware Spread ] ( https://leetcode.com/problems/minimize-malware-spread/ ) | [ C++ ] ( ./C++/minimize-malware-spread.cpp ) [ Python ] ( ./Python/minimize-malware-spread.py ) | _ O(n) _ | _ O(n) _ | Hard || Union Find |
925
928
926
929
## Geometry
927
930
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
You can’t perform that action at this time.
0 commit comments