[LeetCode] 162. Find Peak Element - Swift
문제 A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return its index. If the array contains multiple peaks, return the index to any of the peaks. You may imagine that nums[-1] = nums[n] = -∞. 문제 해석 Peak 요소는 이웃에 존재하는 수보다 엄격히 큰 요소이다. 정수 배열이 주어지면, Peak 요소를 찾아 인덱스를 반환합니다. 만약 여러 개의 Peak가 있는 경우 그 중 아무거나 반환하면 됩니다. 그리고 nums[-..
2021.03.17