Skip to content

Instantly share code, notes, and snippets.

@davidinga
Last active June 7, 2019 00:01
Show Gist options
  • Save davidinga/505409f2a5f83988377bdab32cf7fd2d to your computer and use it in GitHub Desktop.
Save davidinga/505409f2a5f83988377bdab32cf7fd2d to your computer and use it in GitHub Desktop.
Binary Tree
public indirect enum BinaryTree {
case node(
leftChild: BinaryTree,
rightChild: BinaryTree,
value: String
)
case empty
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment