Skip to content

Commit 043d312

Browse files
author
wangpeng
committed
docs: add _338_countBits
1 parent c5b1791 commit 043d312

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

3333
- [x] [309. 最佳买卖股票时机含冷冻期](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_309_maxProfit.java)
3434

35-
- [ ] [338. 比特位计数](https://leetcode-cn.com/problems/counting-bits/)
35+
- [x] [338. 比特位计数](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_338_countBits.java)
3636

3737
- [ ] [343. 整数拆分](https://leetcode-cn.com/problems/integer-break/)
3838

@@ -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-
### 题目列表(更新中--已完成156
72+
### 题目列表(更新中--已完成157
7373

7474
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
7575
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -195,6 +195,7 @@
195195
| #322 | [零钱兑换](https://leetcode-cn.com/problems/coin-change/) | [CoinChange](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_322_coinChange.java) | [动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
196196
| #328 | [奇偶链表](https://leetcode-cn.com/problems/odd-even-linked-list/) | [OddEvenList](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_328_OddEvenList.java) | [链表](https://leetcode-cn.com/tag/linked-list/) | Medium | |
197197
| #336 | [回文对](https://leetcode-cn.com/problems/palindrome-pairs/) | [PalindromePairs](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_336_palindromePairs_2.java) | [字典树](https://leetcode-cn.com/tag/trie/)[哈希表](<https://leetcode-cn.com/tag/hash-table/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Hard | |
198+
| #338 | [比特位计数](https://leetcode-cn.com/problems/counting-bits/) | [CountBits](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_338_countBits.java) | [位运算](https://leetcode-cn.com/tag/bit-manipulation/)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
198199
| #354 | [俄罗斯套娃信封问题](https://leetcode-cn.com/problems/russian-doll-envelopes/) | [MaxEnvelopes.java](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_354_maxEnvelopes_2.java) | [二分查找](<https://leetcode-cn.com/tag/binary-search/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Hard | |
199200
| #376 | [摆动序列](https://leetcode-cn.com/problems/wiggle-subsequence/) | [WiggleMaxLength](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_376_wiggleMaxLength.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
200201
| #402 | [移掉K位数字](https://leetcode-cn.com/problems/remove-k-digits/) | [RemoveKdigits](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_402_removeKdigits.java) | [](https://leetcode-cn.com/tag/heap/)[贪心算法](https://leetcode-cn.com/tag/greedy/) | Medium | |

0 commit comments

Comments
 (0)