hectorsvill / Binary-Tree

Practice Binary Trees and challenges

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binary-Tree

class Node {
    var value: Int
    var left: Node?
    var right: Node?
    
    init(value: Int) {
        self.value = value
    }
}

About

Practice Binary Trees and challenges

License:GNU General Public License v3.0


Languages

Language:Swift 100.0%