An open API service indexing awesome lists of open source software.

https://github.com/beyondkmp/leetcode

leetcode题解
https://github.com/beyondkmp/leetcode

Last synced: about 1 year ago
JSON representation

leetcode题解

Awesome Lists containing this project

README

          

# Algorithm

| # | Title | Solution | Difficulty | Relate Topic |
|-----|--------------------------|----------------------------------------------------------------|------------|---------------------|
| 22 | [generate Parentheses][] | [Go][generate-parentheses-go], [Doc][generate-parentheses-doc] | Medium | Backtracking |
| 377 | [Combination Sum IV][] | [Doc][combination-sum-IV-doc] | Medium | Dynamic Programming |

[generate Parentheses]: https://leetcode.com/problems/generate-parentheses/ "generate Parentheses"
[generate-parentheses-go]: https://github.com/beyondkmp/leetcode/blob/master/golang/backtracking/generate_parenthesis.go "generate-parentheses-go"
[generate-parentheses-doc]: https://github.com/beyondkmp/leetcode/tree/master/doc/generate_parentheses "generate-parentheses-doc"

[Combination Sum IV]: https://leetcode.com/problems/combination-sum-iv/ "Combination Sum IV"
[combination-sum-IV-doc]: https://github.com/beyondkmp/leetcode/tree/master/doc/combination_sum "combination-sum-IV-doc"