Day 7.2 solution.

This commit is contained in:
Anna Rose Wiggins 2018-12-10 00:57:35 -05:00
parent 7f0bc4d9f1
commit 42cb05ba7f
No known key found for this signature in database
GPG key ID: 8D9ACA841015C59A
3 changed files with 74 additions and 0 deletions

View file

@ -9,6 +9,7 @@ type Node struct {
Name rune
Parents []*Node
Children []*Node
Worked int // the amount of time spent working on this node.
}
// BuildDependencyTree parses the input and returns the root node.