Greedy Algorithms - Jump Game (Can Reach End?)
What is the time complexity of the optimal greedy solution for the Jump Game problem, and why is the following common misconception incorrect?
Misconception: The time complexity is O(n^2) because for each index, you might check all reachable next indices.
