借助python的一些方法可以直接实现 1.找到最大值; 2.返回最大值的索引

# -*- coding: utf-8 -*-
"""
Created on Sat Mar 26 10:15:01 2022

@author: Administrator
"""
#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param nums int整型一维数组 
# @return int整型
#
class Solution:
    def findPeakElement(self , nums) -> int:
        # write code here
        maxv = max(nums)
        ind = nums.index(maxv)
        return ind