Skip to content

Instantly share code, notes, and snippets.

@wkimeria
Created December 4, 2016 02:17
Show Gist options
  • Save wkimeria/6bef68acae97e83d00c586eaa5585627 to your computer and use it in GitHub Desktop.
Save wkimeria/6bef68acae97e83d00c586eaa5585627 to your computer and use it in GitHub Desktop.
def maximum(tr: Tree[Int]): Int = tr match{
case Leaf(v) => v
case Branch(l,r) => maximum(l) max maximum(r)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment