Merge branch 'master' of git.hxr.so:yige/js-practice

This commit is contained in:
2020-05-13 14:40:43 +08:00
3 changed files with 66 additions and 0 deletions

View File

@ -286,9 +286,15 @@ LeetCode 与 LintCode 解题记录。此为个人练习仓库,代码中对重
## 栈
- [最大矩阵](src/stack/maximal-rectangle.js)
- LeetCode 85. 最大矩阵 <https://leetcode-cn.com/problems/maximal-rectangle/>
- LintCode 510. 最大矩阵 <https://www.lintcode.com/problem/maximal-rectangle/description>
- [最小栈](src/stack/min-stack.js)
- LeetCode 155. 最小栈 <https://leetcode-cn.com/problems/min-stack/>
- LintCode 12. 带最小值操作的栈 <https://www.lintcode.com/problem/min-stack/description>
## 数学
- [阶乘后的零](src/math/factorial-trailing-zeroes.js)