Longest Mountain in Array at TikTok
Medium41.8% acceptance
This problem has 37.5% frequency at TikTok.
Problem Description
You may recall that an array `arr` is a **mountain array** if and only if: * `arr.length >= 3` * There exists some index `i` (**0-indexed**) with `0 < i < arr.length - 1` such that: * `arr[0] < arr[1] < ... < arr[i - 1] < arr[i]` * `arr[i] > arr[i + 1] > ... > arr[arr.length - 1]` G...
Read full problem and hintsTopics
Also asked at 10 companies
More TikTok Questions
Number of IslandsMediumTrapping Rain WaterHardMerge IntervalsMediumLongest Increasing SubsequenceMediumSubarray With Elements Greater Than Varying ThresholdHard
View all TikTok questions