{"id":21038229,"url":"https://github.com/bingohuang/go-codes","last_synced_at":"2025-06-13T04:05:44.729Z","repository":{"id":75785011,"uuid":"225385472","full_name":"bingohuang/go-codes","owner":"bingohuang","description":"Go 编码库","archived":false,"fork":false,"pushed_at":"2021-02-20T07:41:15.000Z","size":548,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-15T14:45:53.643Z","etag":null,"topics":["go","leetcode","nowcoder"],"latest_commit_sha":null,"homepage":"https://leetcode-cn.com/u/bingohuang/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bingohuang.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-02T13:48:17.000Z","updated_at":"2021-02-20T07:41:17.000Z","dependencies_parsed_at":"2023-07-26T23:03:23.336Z","dependency_job_id":null,"html_url":"https://github.com/bingohuang/go-codes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bingohuang/go-codes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bingohuang%2Fgo-codes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bingohuang%2Fgo-codes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bingohuang%2Fgo-codes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bingohuang%2Fgo-codes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bingohuang","download_url":"https://codeload.github.com/bingohuang/go-codes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bingohuang%2Fgo-codes/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259578199,"owners_count":22879213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","leetcode","nowcoder"],"created_at":"2024-11-19T13:30:07.687Z","updated_at":"2025-06-13T04:05:44.689Z","avatar_url":"https://github.com/bingohuang.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# go-codes\n我的 Go 编码集\n\n---\n## LeetCode 刷题集\n\n- 查看题解集合: https://leetcode-cn.com/u/bingohuang/\n\n## 题解分类：\n\n### 数组链表\n\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|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|\n|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|\n|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|\n|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|\n\n### 栈、队列、堆\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|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|\n\n### 贪心\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|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|\n|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|\n|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|\n|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|\n\n### 递归、回溯与分治\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 二叉树、图\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 二分查找、二分查找树\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 哈希表、字符串\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 搜索\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 动态规划\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n### 高级数据结构\n|编号|题名|难度|思路|实现|时间|\n| ------ | ------ | ------ | ------ | ------ | ------ |\n|xxx|[xxx](xxx)|简单|[`Go`](xxx)|[`Go`](xxx)|2020-xx-xx|\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbingohuang%2Fgo-codes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbingohuang%2Fgo-codes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbingohuang%2Fgo-codes/lists"}