{"id":16970240,"url":"https://github.com/wanghaoxi3000/leetcode","last_synced_at":"2025-07-19T10:35:37.775Z","repository":{"id":92266366,"uuid":"201813432","full_name":"wanghaoxi3000/leetcode","owner":"wanghaoxi3000","description":"LeetCode 解题记录","archived":false,"fork":false,"pushed_at":"2019-10-24T07:37:13.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-26T13:43:37.455Z","etag":null,"topics":["leetcode","leetcode-golang"],"latest_commit_sha":null,"homepage":null,"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/wanghaoxi3000.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-11T20:47:17.000Z","updated_at":"2022-11-24T01:58:19.000Z","dependencies_parsed_at":"2023-06-08T05:15:09.782Z","dependency_job_id":null,"html_url":"https://github.com/wanghaoxi3000/leetcode","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghaoxi3000%2Fleetcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghaoxi3000%2Fleetcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghaoxi3000%2Fleetcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wanghaoxi3000%2Fleetcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wanghaoxi3000","download_url":"https://codeload.github.com/wanghaoxi3000/leetcode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244852681,"owners_count":20521159,"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":["leetcode","leetcode-golang"],"created_at":"2024-10-14T00:27:45.568Z","updated_at":"2025-03-21T19:14:23.440Z","avatar_url":"https://github.com/wanghaoxi3000.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LeetCode\nLeetCode 解题记录\n\n## Go\n使用 Go 语言的解题记录\n\n- longestCommonPrefix 最长公共前缀\n- checkInclusion 字符串的排列\n- multiply 字符串相乘\n- reverseWords 翻转字符串里的单词\n- simplifyPath 简化路径\n- restoreIPAddresses 复原IP地址\n- threeSum 三数之和\n- search 搜索旋转排序数组\n\n- 1.[Two sum 两数之和](./Go/1_twoSum.go)\n- 3.[Longest Substring Without Repeating Characters 无重复字符的最长子串](./Go/3_lengthOfLongestSubstring.go)\n- 9.[Palindrome Number 回文数](./Go/9_isPalindrome.go)\n- 75.[sortColors 颜色分类](./Go/75_sortColors.go)\n- 209.[Minimum Size Subarray Sum 长度最小的子数组](./Go/209_minSubArrayLen.go)\n- 219.[Contains Duplicate II 存在重复元素 II](./Go/219_containsNearbyDuplicateII.go)\n- 167.[Two Sum II - Input array is sorted 两数之和 II - 输入有序数组](./Go/167_twoSum2.go)\n- 268.[missingNumber 缺失数字](./Go/268_missingNumber.go)\n- 344.[Reverse String 反转字符串](./Go/344_reverseString.go)\n- 349.[Intersection of Two Arrays 两个数组的交集](./Go/349_intersection.go)\n- 454.[4Sum II 四数相加 II](./Go/454_4SumII.go)\n- 447.[Number of Boomerangs 回旋镖的数量](./Go/447_numberOfBoomerangs.go)\n- 695.[Max Area of Island 岛屿的最大面积](./Go/695_maxAreaOfIsland.go)\n- 674.[Longest Continuous Increasing Subsequence 最长连续递增序列](./Go/674_findLengthOfLCIS.go)\n\n## string 字符串\n- 20.[Valid Parentheses 有效的括号](string/20_valid_parentheses.go)\n- 150.[Evaluate Reverse Polish Notation 逆波兰表达式求值](string/150_eval_RPN.go)\n\n## linklist 链表\n- 19.[Remove Nth Node From End of List 删除链表的倒数第N个节点](linklist/19_remove_nth_from_end_test.go)\n- 24.[Swap Nodes in Pairs 两两交换链表中的节点](./linklist/24_swap_pairs.go)\n- 86.[Partition List 分隔链表](linklist/86_partition_list.go)\n- 92.[Reverse Linked List II 反转链表 II](linklist/92_reverse_between.go)\n- 203.[Remove Linked List Elements 移除链表元素](./linklist/203_remove_elements.go)\n- 206.[Reverse Linked List 反转链表](linklist/206_reverse_linked_list.go)\n- 237.[Delete Node in a Linked List 删除链表中的节点](linklist/237_delete_node_in_a_inked_list.go)\n- 328.[Odd Even Linked List 奇偶链表](linklist/328_odd_even_linked_list.go)\n\n## tree 树\n- 94.[Binary Tree Inorder Traversal 二叉树的中序遍历](tree/inorder_traversal.go)\n- 102.[Binary Tree Level Order Traversal 二叉树的层次遍历](tree/levelorder_traversal.go)\n- 144.[Binary Tree Preorder Traversal 二叉树的前序遍历](tree/preorder_traversal.go)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwanghaoxi3000%2Fleetcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwanghaoxi3000%2Fleetcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwanghaoxi3000%2Fleetcode/lists"}