Skip to content

Commit f4d9071

Browse files
author
wangpeng
committed
docs: add _38_countAndSay
1 parent 42617eb commit f4d9071

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练习,坚持每天一道,目前已完成158道
6+
- leetcode练习,坚持每天一道,目前已完成159道
77
- 解题语言是Java
88
- 每道题都是可编译运行的
99
- 每道题有自己的方法和他人优秀解法
@@ -19,7 +19,7 @@
1919

2020
- [ ] [37. 解数独-Hard](https://leetcode-cn.com/problems/sudoku-solver/)
2121

22-
- [ ] [38. 报数-Easy](https://leetcode-cn.com/problems/count-and-say/)
22+
- [x] [38. 报数-Easy](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_38_countAndSay.java)
2323

2424
## 已解题目
2525

@@ -54,7 +54,7 @@
5454
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
5555
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
5656

57-
### 题目列表(更新中--已完成158
57+
### 题目列表(更新中--已完成159
5858

5959
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
6060
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -93,6 +93,7 @@
9393
| #33 | [搜索旋转排序数组](https://leetcode-cn.com/problems/search-in-rotated-sorted-array/) | [Search](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_33_search.java) | [数组](<https://leetcode-cn.com/tag/array/>)[二分查找](<https://leetcode-cn.com/tag/binary-search/>) | Medium | |
9494
| #34 | [在排序数组中查找元素的第一个和最后一个位置](https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/) | [SearchRange](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_34_searchRange.java) | [数组](<https://leetcode-cn.com/tag/array/>)[二分查找](<https://leetcode-cn.com/tag/binary-search/>) | Medium | |
9595
| #35 | [搜索插入位置](https://leetcode-cn.com/problems/search-insert-position/) | [SearchInsert](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_35_searchInsert.java) | [数组](<https://leetcode-cn.com/tag/array/>)[二分查找](<https://leetcode-cn.com/tag/binary-search/>) | Easy | |
96+
| #38 | [报数](https://leetcode-cn.com/problems/count-and-say/) | [CountAndSay](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_38_countAndSay.java) | [字符串](<https://leetcode-cn.com/tag/string/>) | Easy | |
9697
| #40 | [组合总和 II](https://leetcode-cn.com/problems/combination-sum-ii/) | [CombinationSum2](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_40_combinationSum2.java) | [数组](<https://leetcode-cn.com/tag/array/>)[回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | |
9798
| #42 | [接雨水](https://leetcode-cn.com/problems/trapping-rain-water/) | [Trap](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_42_trap.java) | [](https://leetcode-cn.com/tag/stack/)[数组](<https://leetcode-cn.com/tag/array/>)[双指针](<https://leetcode-cn.com/tag/two-pointers/>) | Hard | |
9899
| #43 | [字符串相乘](https://leetcode-cn.com/problems/multiply-strings/) | [Multiply](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_43_multiply.java) | [数学](<https://leetcode-cn.com/tag/math/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |

0 commit comments

Comments
 (0)