[Leetcode] 45. Jump Game II
Contents
https://leetcode.com/problems/jump-game-ii/description/
전형적인 DP문제 라고 생각했다.
minimum number를 구하는 문제이기 때문에 min number를 저장하는 dp list를 만들고
O(n + m)?이 되도록 진행해보았다.
|
|