Skip to content
Advertisement

How to make this greedy function faster?

I am trying to solve a problem and my code fails at one test case where the list is of length 25000. Is there any way I can make this faster. I tried using functools.lru_cache and I still can not run within the time required to complete.

This is the problem from the site

Given an array of non-negative integers nums, you are initially positioned at the first index of the array.

Each element in the array represents your maximum jump length at that position.

Determine if you are able to reach the last index.

This is what I have tried

JavaScript

Sample test cases work

JavaScript

I have also tried going from the other direction,

JavaScript

But I still can not make this run fast enough to clear the last test case of 25000 element list, what is it that I am doing wrong here?

Advertisement

Answer

Ok, I think I get it. Can you try this? Please note, this is taken straight from: https://codereview.stackexchange.com/questions/223612/jump-game-leetcode

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement