add: 寻找重复数

This commit is contained in:
2020-05-26 23:27:04 +08:00
parent 3770b30040
commit 6098f48863
3 changed files with 35 additions and 0 deletions

View File

@ -348,6 +348,11 @@ LeetCode 与 LintCode 解题记录。此为个人练习仓库,代码中对重
- LeetCode 146. LRU缓存机制 <https://leetcode-cn.com/problems/lru-cache/>
- LintCode 134. LRU缓存策略 <https://www.lintcode.com/problem/lru-cache/description>
- [寻找重复数](src/array/find-the-duplicate-number.js)
- LeetCode 287. 寻找重复数 <https://leetcode-cn.com/problems/find-the-duplicate-number/>
- LintCode 633. 寻找重复的数 <https://www.lintcode.com/problem/find-the-duplicate-number/description>
## 栈
- [最大矩阵](src/stack/maximal-rectangle.js)