Skip to content

Commit 2e1cdb3

Browse files
author
wangpeng
committed
docs: add _16_threeSumClosest
1 parent 4cf7547 commit 2e1cdb3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
- [x] [12. 整数转罗马数字](https://leetcode-cn.com/problems/integer-to-roman)
1818
- [x] [13. 罗马数字转整数](https://leetcode-cn.com/problems/roman-to-integer)
19-
- [ ] [16. 最接近的三数之和](https://leetcode-cn.com/problems/3sum-closest)
19+
- [x] [16. 最接近的三数之和](https://leetcode-cn.com/problems/3sum-closest)
2020
- [ ] [17. 电话号码的字母组合](https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number)
2121
- [ ] [18. 四数之和](https://leetcode-cn.com/problems/4sum)
2222
- [ ] [20. 有效的括号](https://leetcode-cn.com/problems/valid-parentheses)
@@ -76,6 +76,7 @@
7676
| #13 | [罗马数字转整数](https://leetcode-cn.com/problems/roman-to-integer/) | [RomanToInt](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_13_romanToInt.java) | [数学](<https://leetcode-cn.com/tag/math/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Easy | 反向求解#12 |
7777
| #14 | [最长公共前缀](https://leetcode-cn.com/problems/longest-common-prefix/) | [LongestCommonPrefix](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_14_longestCommonPrefix.java) | [字符串](<https://leetcode-cn.com/tag/string/>) | Easy | |
7878
| #15 | [三数之和](https://leetcode-cn.com/problems/3sum/) | [ThreeSum](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_15_threeSum.java) | [数组](<https://leetcode-cn.com/tag/array/>)[双指针](<https://leetcode-cn.com/tag/two-pointers/>) | Medium | |
79+
| #16 | [最接近的三数之和](https://leetcode-cn.com/problems/3sum-closest/) | [ThreeSumClosest](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_16_threeSumClosest.java) | [数组](<https://leetcode-cn.com/tag/array/>)[双指针](<https://leetcode-cn.com/tag/two-pointers/>) | Medium | |
7980
| #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 | |
8081
| #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 | |
8182
| #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 | |

0 commit comments

Comments
 (0)