|
1 | 1 | # LeetCode-Java
|
2 | 2 | ## 说明
|
3 |
| -- leetcode练习,坚持每天一道,目前已完成222道 |
| 3 | +- leetcode练习,坚持每天一道,目前已完成223道 |
4 | 4 | - 解题语言是Java
|
5 | 5 | - 每道题都是可编译运行的
|
6 | 6 | - 每道题有自己的方法和他人优秀解法
|
|
12 | 12 |
|
13 | 13 | 扫题:顺序
|
14 | 14 |
|
15 |
| -- [ ] [65. 有效数字 -Hard](https://leetcode-cn.com/problems/valid-number/) |
| 15 | +- [x] [65. 有效数字 -Hard](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_65_isNumber.java) |
16 | 16 |
|
17 | 17 | - [ ] [66. 加一 -Easy](https://leetcode-cn.com/problems/plus-one/)
|
18 | 18 |
|
|
59 | 59 | - [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
|
60 | 60 | - [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
|
61 | 61 |
|
62 |
| -### 题目列表(更新中—已完成222) |
| 62 | +### 题目列表(更新中—已完成223) |
63 | 63 |
|
64 |
| -[Leetcode-Java(200+题解,持续更新、欢迎star)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/LCP/_4_domino.java) |
| 64 | +[Leetcode-Java(200+题解,持续更新、欢迎star)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_65_isNumber.java) |
65 | 65 |
|
66 | 66 | | No | 题目 | 解决方案 | 相关话题 | 难度 | 备注 |
|
67 | 67 | | ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
|
|
129 | 129 | | #62 | [不同路径](https://leetcode-cn.com/problems/unique-paths/) | [UniquePaths](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_62_uniquePaths.java) | [数组](<https://leetcode-cn.com/tag/array/>)、[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
|
130 | 130 | | #63 | [不同路径 II](https://leetcode-cn.com/problems/unique-paths-ii/) | [UniquePathsWithObstacles](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_63_uniquePathsWithObstacles.java) | [数组](<https://leetcode-cn.com/tag/array/>)、[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
|
131 | 131 | | #64 | [最小路径和](https://leetcode-cn.com/problems/minimum-path-sum/) | [MinPathSum](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_64_minPathSum.java) | [数组](<https://leetcode-cn.com/tag/array/>)、[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
|
| 132 | +| #65 | [有效数字](https://leetcode-cn.com/problems/valid-number/) | [IsNumber](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_65_isNumber.java) | [数组](<https://leetcode-cn.com/tag/array/>)、[字符串](<https://leetcode-cn.com/tag/string/>) | Hard | | |
132 | 133 | | #69 | [x 的平方根](https://leetcode-cn.com/problems/sqrtx/) | [MySqrt](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_69_mySqrt.java) | [数学](<https://leetcode-cn.com/tag/math/>)、[二分查找](<https://leetcode-cn.com/tag/binary-search/>) | Easy | |
|
133 | 134 | | #70 | [爬楼梯](https://leetcode-cn.com/problems/climbing-stairs/) | [ClimbStairs](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_70_climbStairs.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | 经典题 |
|
134 | 135 | | #71 | [简化路径](https://leetcode-cn.com/problems/simplify-path/) | [SimplifyPath](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_71_simplifyPath.java) | [栈](https://leetcode-cn.com/tag/stack/)、[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |
|
|
0 commit comments