IT General
Codility #3-FrogJmp
SoftArts
2018. 8. 18. 19:54
function solution(X, Y, D) {
return Math.ceil((Y - X) / D);
}