Problems Flashcards

1
Q

https://leetcode.com/problems/partition-equal-subset-sum

A

similar to knapsack 0-1 problem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

https://leetcode.com/problems/minimum-subsequence-in-non-increasing-order

A

solve it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

https://leetcode.com/problems/find-valid-matrix-given-row-and-column-sums

A

solve it, time complexity

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

https://leetcode.com/problems/kth-largest-element-in-a-stream

A

solve it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

https://leetcode.com/problems/count-submatrices-with-all-ones/

A

solve it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

https://leetcode.com/problems/find-the-smallest-divisor-given-a-threshold

A

solve it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

https://leetcode.com/problems/search-insert-position/

A

(boundary setting) - why we’re setting len(array) and not len(array) - 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

https://leetcode.com/problems/split-array-largest-sum

A

solve, with time complexity. What are the approaches you tries

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

KMP string matching

A

solve it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly