...

/

Bitonic Point in Bitonic Array

Bitonic Point in Bitonic Array

Let's use our approach in a problem with an unsorted array as the input. Difficulty Level: Easy

Problem statement

We’ll call an array, nums, a bitonic array if the following properties hold:

  • nums.length3nums.length \geq 3
  • There exists some ii with 0<i<nums.length10 < i < nums.length - 1 such that:
    • nums[0]<nums[1]<...<nums[i1]<nums[i]nums[0] < nums[1] < ... < nums[i-1] < nums[i]
...