File tree 1 file changed +1
-1
lines changed
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 873
873
750 | [ Number Of Corner Rectangles] ( https://leetcode.com/problems/number-of-corner-rectangles/ ) | [ C++] ( ./C++/number-of-corner-rectangles.cpp ) [ Python] ( ./Python/number-of-corner-rectangles.py ) | _ O(n * m^2)_ | _ O(n * m)_ | Medium ||
874
874
764 | [ Largest Plus Sign] ( https://leetcode.com/problems/largest-plus-sign/ ) | [ C++] ( ./C++/largest-plus-sign.cpp ) [ Python] ( ./Python/largest-plus-sign.py ) | _ O(n^2)_ | _ O(n^2)_ | Medium ||
875
875
788 | [ Rotated Digits] ( https://leetcode.com/problems/rotated-digits/ ) | [ C++] ( ./C++/rotated-digits.cpp ) [ Python] ( ./Python/rotated-digits.py ) | _ O(logn)_ | _ O(logn)_ | Easy || Memoization |
876
- 790 | [ Domino and Tromino Tiling] ( https://leetcode.com/problems/domino-and-tromino-tiling/ ) | [ C++] ( ./C++/domino-and-tromino-tiling.cpp ) [ Python] ( ./Python/domino-and-tromino-tiling.py ) | _ O(logn)_ | _ O(logn )_ | Medium || Matrix Exponentiation |
876
+ 790 | [ Domino and Tromino Tiling] ( https://leetcode.com/problems/domino-and-tromino-tiling/ ) | [ C++] ( ./C++/domino-and-tromino-tiling.cpp ) [ Python] ( ./Python/domino-and-tromino-tiling.py ) | _ O(logn)_ | _ O(1 )_ | Medium || Matrix Exponentiation |
877
877
799 | [ Champagne Tower] ( https://leetcode.com/problems/champagne-tower/ ) | [ C++] ( ./C++/champagne-tower.cpp ) [ Python] ( ./Python/champagne-tower.py ) | _ O(n^2)_ | _ O(n)_ | Medium |||
878
878
801 | [ Minimum Swaps To Make Sequences Increasing] ( https://leetcode.com/problems/minimum-swaps-to-make-sequences-increasing/ ) | [ C++] ( ./C++/minimum-swaps-to-make-sequences-increasing.cpp ) [ Python] ( ./Python/minimum-swaps-to-make-sequences-increasing.py ) | _ O(n)_ | _ O(1)_ | Medium |||
879
879
805 | [ Split Array With Same Average] ( https://leetcode.com/problems/split-array-with-same-average/ ) | [ C++] ( ./C++/split-array-with-same-average.cpp ) [ Python] ( ./Python/split-array-with-same-average.py ) | _ O(n^4)_ | _ O(n^3)_ | Hard |||
You can’t perform that action at this time.
0 commit comments