Skip to content

Commit b6d1732

Browse files
author
wangpeng
committed
docs: add _264_nthUglyNumber
1 parent f52fc35 commit b6d1732

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
44

55
## 说明
6-
- leetcode练习,坚持每天一道,目前已完成153道
6+
- leetcode练习,坚持每天一道,目前已完成154道
77
- 解题语言是Java
88
- 每道题都是可编译运行的
99
- 每道题有自己的方法和他人优秀解法
@@ -26,7 +26,7 @@
2626

2727
- [x] [213. 打家劫舍 II](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_213_rob.java)
2828

29-
- [ ] [264. 丑数 II](https://leetcode-cn.com/problems/ugly-number-ii/)
29+
- [x] [264. 丑数 II](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_264_nthUglyNumber.java)
3030

3131
- [ ] [279. 完全平方数](https://leetcode-cn.com/problems/perfect-squares/)
3232

@@ -69,7 +69,7 @@
6969
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
7070
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
7171

72-
### 题目列表(更新中--已完成153
72+
### 题目列表(更新中--已完成154
7373

7474
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
7575
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -183,6 +183,7 @@
183183
| #236 | [二叉树的最近公共祖先](https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree/) | [LowestCommonAncestor](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_236_lowestCommonAncestor.java) | [](https://leetcode-cn.com/tag/tree/) | Medium | |
184184
| #237 | [删除链表中的节点](https://leetcode-cn.com/problems/delete-node-in-a-linked-list/) | [DeleteNode](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_237_deleteNode.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Easy | |
185185
| #239 | [滑动窗口最大值](https://leetcode-cn.com/problems/sliding-window-maximum/) | [MaxSlidingWindow](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_239_maxSlidingWindow.java) | [](https://leetcode-cn.com/tag/heap/)[sliding window](<https://leetcode-cn.com/tag/sliding-window/>) | Hard | |
186+
| #264 | [丑数 II](https://leetcode-cn.com/problems/ugly-number-ii/) | [NthUglyNumber](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_264_nthUglyNumber.java) | [](https://leetcode-cn.com/tag/heap/)[数学](<https://leetcode-cn.com/tag/math/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
186187
| #290 | [单词模式](https://leetcode-cn.com/problems/word-pattern/) | [WordPattern](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_290_wordPattern.java) | [哈希表](<https://leetcode-cn.com/tag/hash-table/>) | Easy | |
187188
| #300 | [最长上升子序列](https://leetcode-cn.com/problems/longest-increasing-subsequence/) | [LengthOfLIS](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_300_lengthOfLIS.java) | [二分查找](<https://leetcode-cn.com/tag/binary-search/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
188189
| #303 | [区域和检索 - 数组不可变](https://leetcode-cn.com/problems/range-sum-query-immutable/) | [NumArray](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_303_NumArray.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | |

0 commit comments

Comments
 (0)