Skip to content

Commit 65f62a4

Browse files
author
王鹏
committed
docs: add _65_isNumber
1 parent f80fd65 commit 65f62a4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LeetCode-Java
22
## 说明
3-
- leetcode练习,坚持每天一道,目前已完成222道
3+
- leetcode练习,坚持每天一道,目前已完成223道
44
- 解题语言是Java
55
- 每道题都是可编译运行的
66
- 每道题有自己的方法和他人优秀解法
@@ -12,7 +12,7 @@
1212

1313
扫题:顺序
1414

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)
1616

1717
- [ ] [66. 加一 -Easy](https://leetcode-cn.com/problems/plus-one/)
1818

@@ -59,9 +59,9 @@
5959
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
6060
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
6161

62-
### 题目列表(更新中—已完成222
62+
### 题目列表(更新中—已完成223
6363

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)
6565

6666
| No | 题目 | 解决方案 | 相关话题 | 难度 | 备注 |
6767
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -129,6 +129,7 @@
129129
| #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 | |
130130
| #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 | |
131131
| #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 | |
132133
| #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 | |
133134
| #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 | 经典题 |
134135
| #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

Comments
 (0)