Number of Jumps

Arrays Contest Easy

Given an array nums of n integers and an integer k, return the total number of jumps needed in the array.


An element nums[i] needs to jump another element nums[j] if:

  • 0 <= i < j <= n-1
  • nums[i] + k < nums[j]

Constraints

  • 1 <= n <= 105
  • -104 <= nums[i] <= 104
  • 0 <= k <= 104

Company Tags

[ ]