Day 7 solution

I will probably end up regretting this since I assume the "wait to be given an input from some other process before continuing execution" paradigm is going to come up again, but this part 2 goroutine+channel solution felt good (taking advantage of Go features) and made me happy, so I rolled with it.
This commit is contained in:
2022-06-15 08:58:51 -05:00
parent c8878ffbce
commit d129e52c70
9 changed files with 157 additions and 0 deletions

View File

@ -37,6 +37,7 @@ var dayMap = []day{
&days.Day04{},
&days.Day05{},
&days.Day06{},
&days.Day07{},
}
func main() {