[참고 문제] : https://leetcode.com/problems/jump-game-ii/ Jump Game II - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제 풀이 생각의 흐름 - DP Jump 하여 다음에 갈 위치와, 현재의 Score를 계산하는 방식이 필요할 것이라고 생각했다. 고로, DP로 풀이가 가능할 것이라고 판단 생각의 흐름 - 메모이제이션 무엇을 저장해야 할까가 그 다음 스텝이였다. 위에서 Score를 떠올렸으므로 nums와 같은 길..