tests/cutTheTree/models.go
Андрей Иванов 083eba9102
Some checks failed
continuous-integration/drone/push Build is failing
Добавил алгоритм взвешивания дерева с обходом в глубину
2024-09-11 15:40:30 +03:00

8 lines
141 B
Go

package cut_the_tree
type Node struct {
ID string `json:"id"`
Name string `json:"name"`
Children []*Node `json:"children"`
}