Leetcode-Easy 852. Peak Index in a Mountain Array

题目描述

给一个数据A,其中A中第i个元素满足A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1],要求找到i并返回

思路

A[i]为数组A的最大值,然后返回其在A中的索引即可

代码实现

class Solution:
    def peakIndexInMountainArray(self, A):
        """
        :type A: List[int]
        :rtype: int
        """
        return A.index(max(A))          

你可能感兴趣的:(Leetcode-Easy 852. Peak Index in a Mountain Array)