1. 程式人生 > >leetcode - 852 - 山脈陣列的峰頂索引

leetcode - 852 - 山脈陣列的峰頂索引

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