-
-
Save cbeust/e5908ffabd84458b6173ecea935b954a to your computer and use it in GitHub Desktop.
This file contains 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
val graph = listOf(Node(“A”, listOf( | |
Node(“A1”), | |
Node(“A2”))) | |
) | |
displayGraph(graph) | |
val tree = listOf(Tree(1, listOf( | |
Tree(11), | |
Tree(12))) | |
) | |
displayGraph(tree) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment