Skip to content

Instantly share code, notes, and snippets.

@sumew
Created April 15, 2020 03:28
Show Gist options
  • Save sumew/98caebff95513d3a83b964be4ec156eb to your computer and use it in GitHub Desktop.
Save sumew/98caebff95513d3a83b964be4ec156eb to your computer and use it in GitHub Desktop.
case class BTree[T](value: T, left: Option[BTree[T]], right: Option[BTree[T]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment