Skip to content

Commit 3e60c81

Browse files
author
王鹏
committed
docs: add _621_leastInterval
1 parent 1baf337 commit 3e60c81

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练习,坚持每天一道,目前已完成214道
3+
- leetcode练习,坚持每天一道,目前已完成215道
44
- 解题语言是Java
55
- 每道题都是可编译运行的
66
- 每道题有自己的方法和他人优秀解法
@@ -18,7 +18,7 @@
1818

1919
- [x] [617. 合并二叉树 -Easy](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_617_mergeTrees.java)
2020

21-
- [ ] [621. 任务调度器 -Medium](https://leetcode-cn.com/problems/task-scheduler/)
21+
- [x] [621. 任务调度器 -Medium](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_621_leastInterval.java)
2222

2323
- [ ] [647. 回文子串 -Medium](https://leetcode-cn.com/problems/palindromic-substrings/)
2424

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

60-
### 题目列表(更新中—已完成214
60+
### 题目列表(更新中—已完成215
6161

62-
[Leetcode-Java(200+题解,持续更新、欢迎star)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_617_mergeTrees.java)
62+
[Leetcode-Java(200+题解,持续更新、欢迎star)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_621_leastInterval.java)
6363

6464
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
6565
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -257,6 +257,7 @@
257257
| #567 | [字符串的排列](https://leetcode-cn.com/problems/permutation-in-string/) | [CheckInclusion](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_567_checkInclusion.java) | [双指针](<https://leetcode-cn.com/tag/two-pointers/>) | Medium | |
258258
| #581 | [最短无序连续子数组](https://leetcode-cn.com/problems/shortest-unsorted-continuous-subarray/) | [FindUnsortedSubarray](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_581_findUnsortedSubarray.java) | [数组](<https://leetcode-cn.com/tag/array/>) | Easy | |
259259
| #617 | [合并二叉树](https://leetcode-cn.com/problems/merge-two-binary-trees/) | [MergeTrees](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_617_mergeTrees.java) | [](https://leetcode-cn.com/tag/tree/) | Easy | |
260+
| #621 | [任务调度器](https://leetcode-cn.com/problems/task-scheduler/) | [LeastInterval](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_621_leastInterval.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[队列](<https://leetcode-cn.com/tag/queue/>)[数组](<https://leetcode-cn.com/tag/array/>) | Medium | |
260261
| #639 | [解码方法 2](https://leetcode-cn.com/problems/decode-ways-ii/) | [NumDecodings](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_639_numDecodings.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Hard | |
261262
| #653 | [两数之和 IV - 输入 BST](https://leetcode-cn.com/problems/two-sum-iv-input-is-a-bst/) | [FindTarget](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_653_findTarget.java) | [](https://leetcode-cn.com/tag/tree/) | Easy | |
262263
| #674 | [最长连续递增序列](https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/) | [FindLengthOfLCIS](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_674_findLengthOfLCIS_e.java) | [数组](<https://leetcode-cn.com/tag/array/>) | Easy | |

0 commit comments

Comments
 (0)