1848. Minimum Distance to the Target Element
Description
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
.
Constraints
1 <= nums.length <= 1000
1 <= nums[i] <= 104
0 <= start < nums.length
target
is innums
.
Approach
Links
GeeksforGeeks
ProgramCreek
YouTube
Examples
Input: nums = [1, 2, 3, 4, 5], target = 5, start = 3
Output: 1
Explanation: nums[4] = 5 is the only value equal to target, so the answer is abs(4 - 3) = 1.
Solutions
/**
* Time complexity :
* Space complexity :
*/
class Solution {
public int getMinDistance(int[] nums, int target, int start) {
int result = Integer.MAX_VALUE;
for(int i = 0; i < nums.length; i++) {
if(nums[i] == target && Math.abs(i-start) < result) {
result = Math.abs(i-start);
}
}
return result;
}
}
Follow up
Last updated
Was this helpful?