🌓

leetcode : Unique Paths II

runtime 0 ms, beats 100% of cpp submissions
O(mn) solution with explanation

tags: dp

Read More

leetcode : Unique Paths

runtime 0 ms, beats 100% of cpp submissions
O(min(m,n)) solution with explanation

tags: math

Read More

leetcode : Rotate List

runtime 6 ms, beats 92.60% of cpp submissions
O(n) solution with explanation

tags:

Read More

leetcode : Spiral Matrix II

runtime 0 ms, beats 100% of cpp submissions
O(n^2) solution with explanation

tags: simulation

Read More

leetcode : Insert Interval

runtime 13 ms, beats 95.58% of cpp submissions
O(n) solution with explanation

tags: None

Read More

leetcode : Merge Intervals

runtime 39 ms, beats 94.21% of cpp submissions
nlog(n) solution with explanation

tags: sorting

Read More

leetcode : Spiral Matrix

runtime 0 ms, beats 100% of cpp submissions
O(mn) solution with explanation

tags: simulation

Read More

leetcode : Maximum Subarray

runtime 110 ms, beats 97.84% of cpp submissions
O(n) solution with explanation

tags: dp

Read More

leetcode : Jump Game

runtime 69 ms, beats 93.58% of cpp submissions
O(n) solution with explanation

tags: greedy

Read More

leetcode : Length of Last Word

runtime 0 ms, beats 100% of cpp submissions
O(n) solution with explanation

tags: string

Read More