Jump Game | LeetCode 55
The key to this is realizing that to get to test if you can get to a target index from the current index, you can add the current index to its value. For instance, if index 3 has the value of 5, you add 3 and 5, which gives you 8. If your target index …