Neighbours within k distance

Binary Search Contest Easy

Given an integer array nums with n values and a value k, return an array containing the number of neighbours for each element of the array.


An element x is the neighbour of element y if x falls in the range [y-k, y+k] (inclusive).

Constraints

  • n == Number of elements in nums
  • 1 <= n <= 105
  • -1000 <= nums[i] <= 1000
  • 0 <= k <= 104

Company Tags

[ ]