개구리가 X에서 Y까지 뛰어야 하고, 한번에 D 만큼 점프 할 수 있을 때, 몇번을 뛰어야 하는가?
function solution(X, Y, D) { return Math.ceil((Y - X) / D) }
https://app.codility.com/demo/results/trainingHC62NP-TRW/
Published 22 June 2020
frontend engineeryceffort on github