Updated CI (#2)

* Updated CI

* Updated CI

* Updated CI

* Updated CI

* Removed wrong method.
This commit is contained in:
2020-01-09 19:08:11 +01:00
committed by GitHub
parent 6a1c33fd02
commit ff6c6ba6e1
5 changed files with 59 additions and 16 deletions

View File

@ -40,10 +40,6 @@ class TreeNode<T>(val value: T) {
return childrenMaxDepth + 1
}
fun allItems(): List<T> {
return children.map { value }
}
override fun toString(): String {
val stringBuilder = StringBuilder()
print(stringBuilder, "", "")