Created
April 20, 2013 11:34
-
-
Save saml/5425696 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int f(int x, int y) { | |
for (; x >= cutoff; x--) { | |
y = (y <= 0) ? 1 : f(x, y - 1); | |
} | |
return g(x,y); | |
} |
danr
commented
Apr 20, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment