package main import ( "fmt" ) type TreeNode struct { Val int Left *TreeNode Right *TreeNode } func main() { fmt.Println("") }