Skip to content

Instantly share code, notes, and snippets.

View kaiqkt's full-sized avatar
👻

Kaique Gomes kaiqkt

👻
  • São Paulo, Brasil
View GitHub Profile
import java.io.PrintStream
class Node(
val value: Int,
var left: Node? = null,
var right: Node? = null
) {
override fun toString(): String {