Created
April 13, 2014 02:41
-
-
Save xtoss/10566713 to your computer and use it in GitHub Desktop.
Python solution for Problem B. Cookie Clicker - Google Code Jam 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This question is also easy enough as long as you find the formular.
But I introduced recursive function at first which gave me
out of stack
error, and I wasted one hour to try to improve my solution, until I discovered that I could just usewhile True
!!!