Skip to content

Instantly share code, notes, and snippets.

@divmgl
Created March 23, 2017 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save divmgl/e1915b201d5a51f0027e66667953e1e2 to your computer and use it in GitHub Desktop.
Save divmgl/e1915b201d5a51f0027e66667953e1e2 to your computer and use it in GitHub Desktop.
Codility.com FrogJmp 100%
import math
def solution(X, Y, D):
return int(math.ceil(float(Y - X) / float(D)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment