{"id":16846501,"url":"https://github.com/kesonan/golang-notes","last_synced_at":"2025-03-22T05:31:24.291Z","repository":{"id":48790886,"uuid":"344367896","full_name":"kesonan/golang-notes","owner":"kesonan","description":"learning notes of golang","archived":false,"fork":false,"pushed_at":"2022-07-19T11:20:09.000Z","size":799,"stargazers_count":40,"open_issues_count":0,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-14T13:03:04.843Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kesonan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-03-04T06:04:30.000Z","updated_at":"2024-06-26T03:00:02.000Z","dependencies_parsed_at":"2022-08-31T13:01:08.957Z","dependency_job_id":null,"html_url":"https://github.com/kesonan/golang-notes","commit_stats":null,"previous_names":["kesonan/golang-notes"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kesonan%2Fgolang-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kesonan%2Fgolang-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kesonan%2Fgolang-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kesonan%2Fgolang-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kesonan","download_url":"https://codeload.github.com/kesonan/golang-notes/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244912800,"owners_count":20530764,"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":[],"created_at":"2024-10-13T13:03:18.690Z","updated_at":"2025-03-22T05:31:23.455Z","avatar_url":"https://github.com/kesonan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# golang-notes\n\n- 学习文档\n  - [go module学习日志](go-module.md)\n  - [grpc源码学习日志](grpc.md)\n- grpc 系列\n  - [chain](./example/chain/chain_test.go)\n  - [backoff](./example/backoff/backoff_test.go)\n  - [resolver](./example/grpc/resolver)\n  - [balancer](./example/grpc/balancer)\n- 学习demo\n  - [tree](./example/tree)\n    - [binary tree](./example/tree/binarytree.go)\n    - [binary sort tree](./example/tree/binarysorttree.go)\n    - [avl tree](./example/tree/balancebinarytree.go)\n- LeetCode\n  - [6. Z 字形变换](./example/leetcode/006_test.go)\n  - [8. 字符串转换整数 (atoi)](./example/leetcode/008_test.go)\n  - [11. 盛最多水的容器](./example/leetcode/011_test.go)\n  - [12. 整数转罗马数字](./example/leetcode/012_test.go)\n  - [15. 三数之和](./example/leetcode/015_test.go)\n  - [16. 最接近的三数之和](./example/leetcode/016_test.go)\n  - [17. 电话号码的字母组合](./example/leetcode/017_test.go)\n  - [18. 四数之和](./example/leetcode/018_test.go)\n  - [19. 删除链表倒数第N个节点](./example/leetcode/018_test.go)\n  - [22. 括号生成](./example/leetcode/022_test.go)\n  - [23. 合并k个升序链表](./example/leetcode/023_test.go)\n  - [24. 两两交换链表中的节点](./example/leetcode/024_test.go)\n  - [25. K个一组翻转链表](./example/leetcode/025_test.go)\n  - [30. 串连所有单词的子串](./example/leetcode/030_test.go)\n  - [31. 下一个排列](./example/leetcode/031_test.go)\n  - [94. 二叉树的中序遍历 ](./example/leetcode/094_test.go)\n  - [145.二叉树的后序遍历 ](./example/leetcode/145_test.go)\n  - [面试题 01.01.判定字符是否唯一](./example/leetcode/interview_01.01_test.go)\n  - [面试题 01.02.判定是否互为字符串重排](./example/leetcode/interview_01.02_test.go)\n  - [面试题 01.03.URL化](./example/leetcode/interview_01.03_test.go)\n  - [面试题 01.04.回文排列](./example/leetcode/interview_01.04_test.go)\n  - [面试题 01.05.一次编辑](./example/leetcode/interview_01.05_test.go)\n  - [面试题 01.06.字符串压缩](./example/leetcode/interview_01.06_test.go)\n  - [面试题 01.07.旋转矩阵](./example/leetcode/interview_01.07_test.go)\n  - [面试题 01.08.零矩阵](./example/leetcode/interview_01.08_test.go)\n  - [面试题 01.09.字符串轮转](./example/leetcode/interview_01.09_test.go)\n  - [面试题 02.01.去除重复节点](./example/leetcode/interview_02.01_test.go)\n  - [面试题 02.02.返回倒数第k个节点](./example/leetcode/interview_02.02_test.go)\n  - [面试题 02.03.删除中间节点](./example/leetcode/interview_02.03_test.go)\n  - [面试题 02.05.链表求和](./example/leetcode/interview_02.05_test.go)\n  - [面试题 02.06.回文链表](./example/leetcode/interview_02.06_test.go)\n  - [面试题 02.07.链表相交](./example/leetcode/interview_02.07_test.go)\n  - [面试题 02.08.环路检测](./example/leetcode/interview_02.08_test.go)\n  - [面试题 03.01.三合一](./example/leetcode/interview_03.01_test.go)\n  - [面试题 03.02.栈的最小值](./example/leetcode/interview_03.02_test.go)\n  - [面试题 03.03.堆盘子](./example/leetcode/interview_03.02_test.go)\n  - [面试题 03.04.化栈为队](./example/leetcode/interview_03.04_test.go)\n  - [面试题 03.05.栈排序](./example/leetcode/interview_03.05_test.go)\n  - [面试题 03.06.动物收纳所](./example/leetcode/interview_03.06_test.go) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkesonan%2Fgolang-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkesonan%2Fgolang-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkesonan%2Fgolang-notes/lists"}