Skip to content

Commit 18d421c

Browse files
committed
update readme
1 parent 4975da2 commit 18d421c

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
1-
# leetcode
2-
solution for leetcode.
1+
# Go Solution for LeetCode algorithm problems
2+
3+
[![Build Status](https://travis-ci.org/zwfang/leetcode.svg?branch=master)](https://travis-ci.org/zwfang/leetcode)
4+
[![codecov](https://codecov.io/gh/zwfang/leetcode/branch/master/graph/badge.svg)](https://codecov.io/gh/zwfang/leetcode)
5+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/86cf2613fa544ab5b254e2a7e5d9deb8)](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

Comments
 (0)