Problems Flashcards
https://leetcode.com/problems/partition-equal-subset-sum
similar to knapsack 0-1 problem
https://leetcode.com/problems/minimum-subsequence-in-non-increasing-order
solve it
https://leetcode.com/problems/find-valid-matrix-given-row-and-column-sums
solve it, time complexity
https://leetcode.com/problems/kth-largest-element-in-a-stream
solve it
https://leetcode.com/problems/count-submatrices-with-all-ones/
solve it
https://leetcode.com/problems/find-the-smallest-divisor-given-a-threshold
solve it
https://leetcode.com/problems/search-insert-position/
(boundary setting) - why we’re setting len(array) and not len(array) - 1
https://leetcode.com/problems/split-array-largest-sum
solve, with time complexity. What are the approaches you tries
KMP string matching
solve it