exercism/go/tree-building/tree_building.go
2022-08-24 14:28:45 +02:00

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")
}