“Bergarray Leetcode” Code-Antworten

Bergarray Leetcode

class Solution:
    def peakIndexInMountainArray(self, arr: List[int]) -> int:
        start = 0
        end = len(arr)-1
        
        while (start < end):
            mid = start + (end-start)//2
            if (arr[mid]>arr[mid+1]):
                end = mid
            else: start = mid+1
        return start
Prabhu Kiran Konda

Bergarray Leetcode

class Solution {    
    public static int peakIndexInMountainArray(int[] arr) {
        int start = 0;
        int end = arr.length-1;

        while(start < end){
            int mid = start + (end-start)/2;

            if (arr[mid] > arr[mid+1]) end = mid;
            else start = mid+1;
        }
        return start;
    }
}
Prabhu Kiran Konda

Ähnliche Antworten wie “Bergarray Leetcode”

Fragen ähnlich wie “Bergarray Leetcode”

Weitere verwandte Antworten zu “Bergarray Leetcode” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen