package main type Node struct { Val int Next *Node Random *Node } func main() { } func copyRandomList(head *Node) *Node { return nil }