LeetCode/go/listnode.go

7 lines
65 B
Go
Raw Normal View History

package main
type ListNode struct {
Val int
Next *ListNode
}