K Nearest Integers

Heaps Contest Easy

Given an integer array arr and two integers k and x. Your task is to find k numbers from the array that are nearest to the value x. The nearness of a integer is determined by its absolute difference from x. If two integers have the same difference from x, choose the smaller integer. Return the selected integers sorted in ascending order.

Constraints

  • 1 <= k <= arr.length
  • 1 <= arr.length <= 104
  • arr is sorted in ascending order.
  • -104 <= arr[i], x <= 104

Company Tags

[ ]