Skip to content

Instantly share code, notes, and snippets.

@takungsk
Created March 15, 2012 13:58
Show Gist options
  • Save takungsk/2044322 to your computer and use it in GitHub Desktop.
Save takungsk/2044322 to your computer and use it in GitHub Desktop.
フィボナッチ数列
// フィボナッチ数列 単純版
def fib(n:Int):Int = {
n match {
case x if (x <= 1) => x
case _ => fib(n - 1) + fib(n - 2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment