|
1 | | -# leetcode |
2 | | -solution for leetcode. |
| 1 | +# Go Solution for LeetCode algorithm problems |
| 2 | + |
| 3 | +[](https://travis-ci.org/zwfang/leetcode) |
| 4 | +[](https://codecov.io/gh/zwfang/leetcode) |
| 5 | +[](https://www.codacy.com/app/zwfang/leetcode?utm_source=github.com&utm_medium=referral&utm_content=zwfang/leetcode&utm_campaign=Badge_Grade) |
| 6 | + |
| 7 | +continually updating😃. |
| 8 | + |
| 9 | +### [view by sorted](./src/README.md) |
| 10 | + |
| 11 | +## Array |
| 12 | +* [76. Minimum Window Substring](./src/0076_minimum_window_substring/minimum_window_substring.go) *sliding window* |
| 13 | +* [209. Minimum Size Subarray Sum](./src/0209_minimum_size_subarray_sum/minimum_size_subarray_sum.go) *sliding window* |
| 14 | + |
| 15 | +## Dynamic Programming |
| 16 | +* [70. Climbing Stairs](./src/0070_climbing_stairs/climbing_stairs.go) |
| 17 | + |
| 18 | +## Greedy |
| 19 | +* [392. Is Subsequence](./src/0392_is_subsequence/is_subsequence.go) |
| 20 | +* [435. Non-overlapping Intervals](./src/0435_non_overlapping_intervals/greedy_solution.go) |
| 21 | +* [455. Assign Cookies](./src/0455_assign_cookies/assign_cookies.go) |
0 commit comments