LeetCode--162. Find Peak Element(找到峯值)Python

題目:python 給定一個數組,返回這個數組中的其中一個峯值的位置(任意一個都行),峯值指的是比兩邊的數都大的值。數組 解題思路:code 直接找比兩邊值都大的位置便可。io 代碼(Python):class class Solution(object): def findPeakElement(self, nums): """ :type nums: L
相關文章
相關標籤/搜索