Created
March 23, 2017 15:38
-
-
Save aballano/b3174b51b1d5ffdbf476a3a71f661f2a 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
// Considerably inefficient implementation for test purposes | |
fun fib(k: Int): Long = when (k) { | |
0 -> 1 | |
1 -> 1 | |
else -> fib(k - 1) + fib(k - 2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment