classSolution: defpeakIndexInMountainArray(self, arr: List[int]) -> int: n = len(arr) left,right =0,n-1 res = 0 while left<right: now = (left+right)//2 if arr[now-1]<arr[now]<arr[now+1]: left = now elif arr[now-1]>arr[now]>arr[now+1]: right = now else: res = now break return res