|
| 1 | +<p>Given an integer array <code>nums</code> <strong>(0-indexed)</strong> and two integers <code>target</code> and <code>start</code>, find an index <code>i</code> such that <code>nums[i] == target</code> and <code>abs(i - start)</code> is <strong>minimized</strong>. Note that <code>abs(x)</code> is the absolute value of <code>x</code>.</p> |
| 2 | + |
| 3 | +<p>Return <code>abs(i - start)</code>.</p> |
| 4 | + |
| 5 | +<p>It is <strong>guaranteed</strong> that <code>target</code> exists in <code>nums</code>.</p> |
| 6 | + |
| 7 | +<p> </p> |
| 8 | +<p><strong class="example">Example 1:</strong></p> |
| 9 | + |
| 10 | +<pre> |
| 11 | +<strong>Input:</strong> nums = [1,2,3,4,5], target = 5, start = 3 |
| 12 | +<strong>Output:</strong> 1 |
| 13 | +<strong>Explanation:</strong> nums[4] = 5 is the only value equal to target, so the answer is abs(4 - 3) = 1. |
| 14 | +</pre> |
| 15 | + |
| 16 | +<p><strong class="example">Example 2:</strong></p> |
| 17 | + |
| 18 | +<pre> |
| 19 | +<strong>Input:</strong> nums = [1], target = 1, start = 0 |
| 20 | +<strong>Output:</strong> 0 |
| 21 | +<strong>Explanation:</strong> nums[0] = 1 is the only value equal to target, so the answer is abs(0 - 0) = 0. |
| 22 | +</pre> |
| 23 | + |
| 24 | +<p><strong class="example">Example 3:</strong></p> |
| 25 | + |
| 26 | +<pre> |
| 27 | +<strong>Input:</strong> nums = [1,1,1,1,1,1,1,1,1,1], target = 1, start = 0 |
| 28 | +<strong>Output:</strong> 0 |
| 29 | +<strong>Explanation:</strong> Every value of nums is 1, but nums[0] minimizes abs(i - start), which is abs(0 - 0) = 0. |
| 30 | +</pre> |
| 31 | + |
| 32 | +<p> </p> |
| 33 | +<p><strong>Constraints:</strong></p> |
| 34 | + |
| 35 | +<ul> |
| 36 | + <li><code>1 <= nums.length <= 1000</code></li> |
| 37 | + <li><code>1 <= nums[i] <= 10<sup>4</sup></code></li> |
| 38 | + <li><code>0 <= start < nums.length</code></li> |
| 39 | + <li><code>target</code> is in <code>nums</code>.</li> |
| 40 | +</ul> |
0 commit comments