Skip to content

Instantly share code, notes, and snippets.

@cbeust
Created February 7, 2017 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbeust/f298d9c6c58d5de8552054e60b6f6d5f to your computer and use it in GitHub Desktop.
Save cbeust/f298d9c6c58d5de8552054e60b6f6d5f to your computer and use it in GitHub Desktop.
interface INode<T> {
val children: List<INode<T>>
val value: T
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment