-
-
Save nilium/9263654 to your computer and use it in GitHub Desktop.
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 max(list: List[Int]): Int = list match { | |
case Nil => throw new NoSuchElementException | |
case List(x) => x | |
case x +: tail => | |
val rhs = max(tail) | |
if (x >= rhs) x else rhs | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment