Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
luzhipeng committed Apr 25, 2019
1 parent 885350c commit 1ecf72c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions problems/239.sliding-window-maximum.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ var maxSlidingWindow = function(nums, k) {

## 关键点解析

- 递归简化操作
- 如果树很高,建议使用栈来代替递归
- 这道题目对顺序没要求的,因此队列数组操作都是一样的,无任何区别
- 双端队列简化时间复杂度

- 滑动窗口

## 代码

Expand Down

0 comments on commit 1ecf72c

Please sign in to comment.