Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
알고리즘: monotonic stack 복잡도: O(n), O(n) 사고과정 1. 어떻게 문제를 풀것인가? 그림을 그리며 시뮬레이션을 그리면 쉬워진다. stack에서 index를 유지하며 들어오는 값 '이하' 이면 pop한다. 그리고 최상단에 있는 인덱스와 지금 들어오는 인덱스의 차이를 반환한다.
- Loading branch information