package tree // Define the Record type struct Node { } // Define the Node type func Build(records []Record) (*Node, error) { panic("Please implement the Build function") }