Skip to content

Commit a45f03d

Browse files
author
wangpeng
committed
docs: add _20_isValid
1 parent 0924ade commit a45f03d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- [x] [16. 最接近的三数之和](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_16_threeSumClosest.java)
2121
- [x] [17. 电话号码的字母组合](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_17_letterCombinations.java)
2222
- [x] [18. 四数之和](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_18_fourSum.java)
23-
- [ ] [20. 有效的括号](https://leetcode-cn.com/problems/valid-parentheses)
23+
- [x] [20. 有效的括号](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_20_isValid.java)
2424
- [ ] [27. 移除元素](https://leetcode-cn.com/problems/remove-element)
2525
- [ ] [28. 实现strStr()](https://leetcode-cn.com/problems/implement-strstr)
2626
- [ ] [29. 两数相除](https://leetcode-cn.com/problems/divide-two-integers)
@@ -29,6 +29,10 @@
2929

3030
- [x] [454. 四数相加 II](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_454_fourSumCount.java)
3131

32+
- [ ] [32. 最长有效括号-Hard](https://leetcode-cn.com/problems/longest-valid-parentheses/)
33+
34+
- [ ] [301. 删除无效的括号-Hard](https://leetcode-cn.com/problems/remove-invalid-parentheses/)
35+
3236
## 已解题目
3337

3438
> 20190404# leetcode目前已有题目1020道,免费852道
@@ -85,6 +89,7 @@
8589
| #17 | [电话号码的字母组合](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/) | [LetterCombinations](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_17_letterCombinations.java) | [字符串](<https://leetcode-cn.com/tag/string/>)[回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | |
8690
| #18 | [四数之和](https://leetcode-cn.com/problems/4sum/) | [FourSum](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_18_fourSum.java) | [数组](<https://leetcode-cn.com/tag/array/>)[双指针](<https://leetcode-cn.com/tag/two-pointers/>)[哈希表](<https://leetcode-cn.com/tag/hash-table/>) | Medium | |
8791
| #19 | [删除链表的倒数第N个节点](https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/) | [RemoveNthFromEnd](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_19_RemoveNthFromEnd.java) | [链表](https://leetcode-cn.com/tag/linked-list/)[双指针](<https://leetcode-cn.com/tag/two-pointers/>) | Medium | |
92+
| #20 | [有效的括号](https://leetcode-cn.com/problems/valid-parentheses/) | [IsValid](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_20_isValid.java) | [](https://leetcode-cn.com/tag/stack/)[字符串](<https://leetcode-cn.com/tag/string/>) | Easy | |
8893
| #21 | [合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists/) | [MergeTwoLists](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_21_MergeTwoLists.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Easy | |
8994
| #22 | [括号生成](https://leetcode-cn.com/problems/generate-parentheses/) | [GenerateParenthesis](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_22_generateParenthesis.java) | [字符串](<https://leetcode-cn.com/tag/string/>)[回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | |
9095
| #23 | [合并K个排序链表](https://leetcode-cn.com/problems/merge-k-sorted-lists/) | [MergeKLists](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_23_mergeKLists.java) | [](https://leetcode-cn.com/tag/heap/)[链表](https://leetcode-cn.com/tag/linked-list/)[分治算法](<https://leetcode-cn.com/tag/divide-and-conquer/>) | Hard | |

0 commit comments

Comments
 (0)