andkrist

Results 1 comments of andkrist

Suggesting new solution. This one should work for all types implementing Comparable, and validate all nodes. ``` private fun Node.isValidSearchBinaryTree(min: E? = null, max: E? = null): Boolean { if...