{"id":16975575,"url":"https://github.com/pinple/leetcode","last_synced_at":"2025-03-21T21:15:42.446Z","repository":{"id":126636541,"uuid":"149766503","full_name":"pinple/leetcode","owner":"pinple","description":"👯‍♀️给脑细胞做做体操","archived":false,"fork":false,"pushed_at":"2019-04-03T14:54:04.000Z","size":76,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-01-26T15:48:19.561Z","etag":null,"topics":["leetcode","leetcode-cn","leetcode-python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pinple.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":"2018-09-21T13:21:17.000Z","updated_at":"2019-11-12T09:42:07.000Z","dependencies_parsed_at":"2023-03-12T14:45:54.559Z","dependency_job_id":null,"html_url":"https://github.com/pinple/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/pinple%2Fleetcode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinple%2Fleetcode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinple%2Fleetcode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pinple%2Fleetcode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pinple","download_url":"https://codeload.github.com/pinple/leetcode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244868764,"owners_count":20523592,"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-cn","leetcode-python"],"created_at":"2024-10-14T01:23:11.930Z","updated_at":"2025-03-21T21:15:42.412Z","avatar_url":"https://github.com/pinple.png","language":"Python","readme":"# 题目列表\n\n## 简单难度\n\n| 题目                                                         | 难度 | 解答                                                         |\n| :----------------------------------------------------------- | :--- | :----------------------------------------------------------- |\n| [1.两数之和](https://leetcode-cn.com/problems/two-sum)       | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/two-sum.py) |\n| [7.反转整数](https://leetcode-cn.com/problems/reverse-integer) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/reverse-integer.py) |\n| [9.回文数](https://leetcode-cn.com/problems/palindrome-number) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/palindrome-number.py) |\n| [13.罗马数字转整数](https://leetcode-cn.com/problems/roman-to-integer) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/roman-to-integer.py) |\n| [14.最长公共前缀](https://leetcode-cn.com/problems/longest-common-prefix) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/longest-common-prefix.py) |\n| [20.有效的括号](https://leetcode-cn.com/problems/valid-parentheses) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/stack/valid-parentheses.py) |\n| [21.合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/linkedlist/merge-two-sorted-lists.py) |\n| [26.删除排序数组中的重复项](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/remove-duplicates-from-sorted-array.py) |\n| [27.移除元素](https://leetcode-cn.com/problems/remove-element) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/remove-element.py) |\n| [28.实现strStr()](https://leetcode-cn.com/problems/implement-strstr) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/implement-strstr.py) |\n| [35.搜索插入位置](https://leetcode-cn.com/problems/search-insert-position) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/search-insert-position.py) |\n| [38.报数](https://leetcode-cn.com/problems/count-and-say)    | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/count-and-say.py) |\n| [53.最大子序和](https://leetcode-cn.com/problems/maximum-subarray) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/dp/maximum-subarray.py) |\n| [58.最后一个单词的长度](https://leetcode-cn.com/problems/length-of-last-word) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/length-of-last-word.py) |\n| [66.加一](https://leetcode-cn.com/problems/plus-one)         | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/plus-one.py) |\n| [67.二进制求和](https://leetcode-cn.com/problems/add-binary) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/add-binary.py) |\n| [69.x 的平方根](https://leetcode-cn.com/problems/sqrtx)      | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/sqrtx.py) |\n| [70.爬楼梯](https://leetcode-cn.com/problems/climbing-stairs) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/dp/climbing-stairs.py) |\n| [83.删除排序链表中的重复元素](https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/linkedlist/remove-duplicates-from-sorted-list.py) |\n| [88.合并两个有序数组](https://leetcode-cn.com/problems/merge-sorted-array) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/merge-sorted-array.py) |\n| [100.相同的树](https://leetcode-cn.com/problems/same-tree)   | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/same-tree.py) |\n| [101.对称二叉树](https://leetcode-cn.com/problems/symmetric-tree) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/symmetric-tree.py) |\n| [104.二叉树的最大深度](https://leetcode-cn.com/problems/maximum-depth-of-binary-tree) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/maximum-depth-of-binary-tree.py) |\n| [107.二叉树的层次遍历 II](https://leetcode-cn.com/problems/binary-tree-level-order-traversal-ii) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/binary-tree-level-order-traversal-ii.py) |\n| [108.将有序数组转换为二叉搜索树](https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/convert-sorted-array-to-binary-search-tree.py) |\n| [110.平衡二叉树](https://leetcode-cn.com/problems/balanced-binary-tree) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/balanced-binary-tree.py) |\n| [111.二叉树的最小深度](https://leetcode-cn.com/problems/minimum-depth-of-binary-tree) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/minimum-depth-of-binary-tree.py) |\n| [112.路径总和](https://leetcode-cn.com/problems/path-sum)    | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/tree/path-sum.py) |\n| [118.杨辉三角](https://leetcode-cn.com/problems/pascals-triangle) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/pascals-triangle.py) |\n| [119.杨辉三角 II](https://leetcode-cn.com/problems/pascals-triangle-ii) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/pascals-triangle-ii.py) |\n| [121. 买卖股票的最佳时机](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/best-time-to-buy-and-sell-stock.py) |\n| [122. 买卖股票的最佳时机 II](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/best-time-to-buy-and-sell-stock-ii.py) |\n| [125. 验证回文串](https://leetcode-cn.com/problems/valid-palindrome/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/string/valid-palindrome.py) |\n| [136. 只出现一次的数字](https://leetcode-cn.com/problems/single-number/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/bit-manipulation/single-number.py) |\n| [141. 环形链表](https://leetcode-cn.com/problems/linked-list-cycle/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/linkedlist/linked-list-cycle.py) |\n| [155. 最小栈](https://leetcode-cn.com/problems/min-stack/)   | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/stack/min-stack.py) |\n| [160. 相交链表](https://leetcode-cn.com/problems/intersection-of-two-linked-lists/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/linkedlist/intersection-of-two-linked-lists.py) |\n| [167. 两数之和 II - 输入有序数组](https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/two-sum-ii-input-array-is-sorted.py) |\n| [168. Excel表列名称](https://leetcode-cn.com/problems/excel-sheet-column-title/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/excel-sheet-column-title.py) |\n| [169. 求众数](https://leetcode-cn.com/problems/majority-element/) | 简单 | [python](https://leetcode-cn.com/problems/majority-element/) |\n| [171. Excel表列序号](https://leetcode-cn.com/problems/excel-sheet-column-number/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/excel-sheet-column-number.py) |\n| [172. 阶乘后的零](https://leetcode-cn.com/problems/factorial-trailing-zeroes/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/factorial-trailing-zeroes.py) |\n| [175. 组合两个表](https://leetcode-cn.com/problems/combine-two-tables/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/combine-two-tables.sql) |\n| [176. 第二高的薪水](https://leetcode-cn.com/problems/second-highest-salary/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/second-highest-salary.sql) |\n| [181. 超过经理收入的员工](https://leetcode-cn.com/problems/employees-earning-more-than-their-managers/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/employees-earning-more-than-their-managers.sql) |\n| [182. 查找重复的电子邮箱](https://leetcode-cn.com/problems/duplicate-emails/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/duplicate-email.sql) |\n| [183. 从不订购的客户](https://leetcode-cn.com/problems/customers-who-never-order/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/customers-who-never-order.sql) |\n| [189. 旋转数组](https://leetcode-cn.com/problems/rotate-array/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/array/rotate-array.py) |\n| [190. 颠倒二进制位](https://leetcode-cn.com/problems/reverse-bits/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/bit-manipulation/reverse-bits.py) |\n| [191. 位1的个数](https://leetcode-cn.com/problems/number-of-1-bits/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/bit-manipulation/number-of-1-bits.py) |\n| [193. 有效电话号码](https://leetcode-cn.com/problems/valid-phone-numbers/) | 简单 | [shell](https://github.com/Neulana/leetcode/blob/master/shell/valid-phone-numbers.sh) |\n| [195. 第十行](https://leetcode-cn.com/problems/tenth-line/)  | 简单 | [shell](https://github.com/Neulana/leetcode/blob/master/shell/tenth-line.sh) |\n| [196. 删除重复的电子邮箱](https://leetcode-cn.com/problems/delete-duplicate-emails/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/delete-duplicate-emails.sql) |\n| [197. 上升的温度](https://leetcode-cn.com/problems/rising-temperature/) | 简单 | [sql](https://github.com/Neulana/leetcode/blob/master/SQL/rising-temperature.sql) |\n| [198. 打家劫舍](https://leetcode-cn.com/problems/house-robber/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/dp/house-robber.py) |\n| [202. 快乐数](https://leetcode-cn.com/problems/happy-number/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/happy-number.py) |\n| [203. 移除链表元素](https://leetcode-cn.com/problems/remove-linked-list-elements/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/linkedlist/remove-linked-list-elements.py) |\n| [204. 计数质数](https://leetcode-cn.com/problems/count-primes/) | 简单 | [python](https://github.com/Neulana/leetcode/blob/master/mathematics/count-primes.py) |\n| [215. 数组中的第K个最大元素](https://leetcode-cn.com/problems/kth-largest-element-in-an-array/) | 中等 | [python](https://github.com/Neulana/leetcode/blob/master/dp/kth-largest-element-in-an-array.py) |\n|                                                              |      |                                                              |\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinple%2Fleetcode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpinple%2Fleetcode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpinple%2Fleetcode/lists"}