GDSC-IGDTUW-Autumn-of-Code-2022 / ip-questions-2023

INTERVIEW PRACTICE
0 stars 4 forks source link

Find Peak #10

Open Khxshx opened 1 year ago

Khxshx commented 1 year ago

Problem: An array arr a mountain if the following properties hold:

  1. arr[0] < arr[1] < ... < arr[i - 1] < arr[i]
  2. arr[i] > arr[i + 1] > ... > arr[arr.length - 1]

Given a mountain array arr, return the index i such that arr[0] < arr[1] < ... < arr[i - 1] < arr[i] > arr[i + 1] > ... > arr[arr.length - 1].

You must solve it in O(log(arr.length)) time complexity.

Example 1: Input: arr = [0,1,0] Output: 1

Example 2: Input: arr = [0,2,1,0] Output: 1

Example 3: Input: arr = [0,10,5,2] Output: 1

Constraints:

Harshita05104 commented 1 year ago

@Parul-Mann @Khxshx Assign this issue to me.

jain-shreyaa-1808 commented 1 year ago

@Khxshx please assign the issue to me

BhavyaDevani commented 1 year ago

@Khxshx pls assign this issue to me