1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-10-18 06:42:08 +02:00
LeetCode/go/treenode.go

8 lines
84 B
Go
Raw Permalink Normal View History

package main
type TreeNode struct {
Val int
Left *TreeNode
Right *TreeNode
}