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

https://github.com/bingohuang/go-codes

Go 编码库
https://github.com/bingohuang/go-codes

go leetcode nowcoder

Last synced: 26 days ago
JSON representation

Go 编码库

Awesome Lists containing this project

README

        

# go-codes
我的 Go 编码集

---
## LeetCode 刷题集

- 查看题解集合: https://leetcode-cn.com/u/bingohuang/

## 题解分类:

### 数组链表

|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|1|[两数之和](https://leetcode-cn.com/problems/two-sum/solution/)|简单|[`Go`](https://leetcode-cn.com/problems/two-sum/solution/go-liang-chong-shi-xian-by-bingohuang/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p1_d1_TwoSum_test.go)|2020-03-02|
|206|[反转链表](https://leetcode-cn.com/problems/reverse-linked-list/)|简单|[`Go`](https://leetcode-cn.com/problems/reverse-linked-list/solution/go-by-bingohuang-2/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p206_d1_ReverseLinkedList_test.go)|2020-03-03|
|242|[有效的字母异位词](https://leetcode-cn.com/problems/valid-anagram/)|简单|[`Go`](https://leetcode-cn.com/problems/valid-anagram/solution/go-liang-chong-shi-xian-by-bingohuang-2/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p242_d1_ValidAnagram_test.go)|2020-03-04|
|1089|[复写零](https://leetcode-cn.com/problems/duplicate-zeros/)|简单|[`Go`](https://leetcode-cn.com/problems/duplicate-zeros/solution/goyu-yan-de-san-chong-shi-xian-by-bingohuang/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p1089_d1_DuplicateZeros_test.go)|2020-03-09|

### 栈、队列、堆
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|1|[两数之和](https://leetcode-cn.com/problems/two-sum/solution/)|简单|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p1_d1_TwoSum_answer.md)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p1_d1_TwoSum_test.go)|2020-03-02|

### 贪心
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|860|[柠檬水找零](https://leetcode-cn.com/problems/lemonade-change/)|简单|[`Go`](https://leetcode-cn.com/problems/lemonade-change/solution/go-by-bingohuang/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p860_d1_LemonadeChange_test.go)|2020-03-07|
|455|[分发饼干](https://leetcode-cn.com/problems/assign-cookies/)|简单|[`Go`](https://leetcode-cn.com/problems/assign-cookies/solution/go-by-bingohuang-3/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p455_d1_AssignCookies_test.go)|2020-03-06|
|376|[摆动序列](https://leetcode-cn.com/problems/wiggle-subsequence/)|中等|[`Go`](https://leetcode-cn.com/problems/wiggle-subsequence/solution/376-go-by-bingohuang/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p376_d2_WiggleSubsequence_test.go)|2020-03-08|
|402|[移掉K位数字](https://leetcode-cn.com/problems/remove-k-digits/)|中等|[`Go`](https://leetcode-cn.com/problems/remove-k-digits/solution/402-go-by-bingohuang/)|[`Go`](https://github.com/bingohuang/go-codes/blob/master/leetcode/editor/cn/p402_d2_RemoveKDigits_test.go)|2020-03-09|

### 递归、回溯与分治
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 二叉树、图
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 二分查找、二分查找树
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 哈希表、字符串
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 搜索
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 动态规划
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|

### 高级数据结构
|编号|题名|难度|思路|实现|时间|
| ------ | ------ | ------ | ------ | ------ | ------ |
|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|