https://github.com/beyondkmp/leetcode
leetcode题解
https://github.com/beyondkmp/leetcode
Last synced: about 1 year ago
JSON representation
leetcode题解
- Host: GitHub
- URL: https://github.com/beyondkmp/leetcode
- Owner: beyondkmp
- Created: 2017-03-27T16:10:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-07-14T04:31:25.000Z (almost 5 years ago)
- Last Synced: 2025-01-25T20:08:22.737Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 258 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"