Created
March 28, 2013 23:45
-
-
Save anonymous/5267731 to your computer and use it in GitHub Desktop.
what a spew this is
This file contains hidden or 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
def pascal(c: Int, r: Int): Int = { | |
if (r < 1 || c < 1 || (c == r)) 1 // handles top of the triangle, and the sides | |
else pascal(c - 1, r - 1) + pascal(c, r - 1) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment