1871. Jump Game VII
Description
**Input:** s = "011010", minJump = 2, maxJump = 3
**Output:** true
**Explanation:**
In the first step, move from index 0 to index 3.
In the second step, move from index 3 to index 5.**Input:** s = "01101110", minJump = 2, maxJump = 3
**Output:** falseac
Last updated