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