https://leetcode.com/problems/sliding-window-maximum/ Sliding Window Maximum - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 풀이 해당 문제는 구간의 최댓값의 리스트를 반환하는 것이다. 예를들면 nums = [ 1, 2, 3, 4, 2,] k = 2 일 때, answer = [2, 3, 4, 4] 를 반환하면 된다. Sliding Window(슬라이딩 윈도우) 알고리즘을 활용하여 문제를 풀었다. 다른..