File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 481
481
873 | [ Length of Longest Fibonacci Subsequence] ( https://leetcode.com/problems/length-of-longest-fibonacci-subsequence/ ) | [ C++] ( ./C++/length-of-longest-fibonacci-subsequence.cpp ) [ Python] ( ./Python/length-of-longest-fibonacci-subsequence.py ) | _ O(n^2)_ | _ O(n)_ | Medium ||
482
482
957 | [ Prison Cells After N Days] ( https://leetcode.com/problems/prison-cells-after-n-days/ ) | [ C++] ( ./C++/prison-cells-after-n-days.cpp ) [ Python] ( ./Python/prison-cells-after-n-days.py ) | _ O(1)_ | _ O(1)_ | Medium ||
483
483
966 | [ Vowel Spellchecker] ( https://leetcode.com/problems/vowel-spellchecker/ ) | [ C++] ( ./C++/vowel-spellchecker.cpp ) [ Python] ( ./Python/vowel-spellchecker.py ) | _ O(n)_ | _ O(w)_ | Medium ||
484
- 974| [ Subarray Sums Divisible by K] ( https://leetcode.com/problems/subarray-sums-divisible-by-k/ ) |[ C++] ( ./C++/subarray-sums-divisible-by-k.cpp ) [ Python] ( ./Python/subarray-sums-divisible-by-k.py ) | _ O(n)_ | _ O(k)_ | Medium | variant of [ Subarray Sum Equals K] (https://leetcode.com/problems/subarray-sum-equals-k/ |
484
+ 974| [ Subarray Sums Divisible by K] ( https://leetcode.com/problems/subarray-sums-divisible-by-k/ ) |[ C++] ( ./C++/subarray-sums-divisible-by-k.cpp ) [ Python] ( ./Python/subarray-sums-divisible-by-k.py ) | _ O(n)_ | _ O(k)_ | Medium | variant of [ Subarray Sum Equals K] ( https://leetcode.com/problems/subarray-sum-equals-k/ ) |
485
485
486
486
## Math
487
487
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
597
597
937| [ Reorder Log Files] ( https://leetcode.com/problems/reorder-log-files/ ) | [ C++] ( ./C++/reorder-log-files.cpp ) [ Python] ( ./Python/reorder-log-files.py ) | _ O(nlogn * l)_ | _ O(l)_ | Easy | | |
598
598
969| [ Pancake Sorting] ( https://leetcode.com/problems/pancake-sorting/ ) | [ C++] ( ./C++/pancake-sorting.cpp ) [ Python] ( ./Python/pancake-sorting.py ) | _ O(n^2)_ | _ O(l)_ | Medium | | |
599
599
973| [ K Closest Points to Origin] ( https://leetcode.com/problems/k-closest-points-to-origin/ ) | [ C++] ( ./C++/k-closest-points-to-origin.cpp ) [ Python] ( ./Python/k-closest-points-to-origin.py ) | _ O(n)_ on average | _ O(1)_ | Easy | | Quick Select, Heap|
600
- 976| [ Largest Perimeter Triangle] ( https://leetcode.com/problems/largest-perimeter-triangle/ ) | [ C++] ( ./C++/largest-perimeter-triangle.cpp ) [ Python] ( ./Python/largest-perimeter-triangle.py ) | _ O(nlogn) | _ O(1)_ | Easy | | |
600
+ 976| [ Largest Perimeter Triangle] ( https://leetcode.com/problems/largest-perimeter-triangle/ ) | [ C++] ( ./C++/largest-perimeter-triangle.cpp ) [ Python] ( ./Python/largest-perimeter-triangle.py ) | _ O(nlogn)_ | _ O(1)_ | Easy | | |
601
601
602
602
## Two Pointers
603
603
| # | Title | Solution | Time | Space | Difficulty | Tag | Note|
You can’t perform that action at this time.
0 commit comments