JuniorArray

Minimum Distance to the Target Element

Given an integer array nums (0-indexed) and two integers target and start, find an index i such that nums[i] == target and abs(i - start) is minimized. Note that abs(x) is the absolute value of x.

Return abs(i - start).

It is guaranteed that target exists in nums.

Example 1
Inputnums = [1,2,3,4,5], target = 5, start = 3
Output1
nums[4] = 5 is the only value equal to target, so the answer is abs(4 - 3) = 1.
Example 2
Inputnums = [1], target = 1, start = 0
Output0
nums[0] = 1 is the only value equal to target, so the answer is abs(0 - 0) = 0.

Constraints

  • 1 <= nums.length <= 1000
  • 1 <= nums[i] <= 10^4
  • 0 <= start < nums.length
  • target is in nums.

Asked at 4 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate