-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday6.go
37 lines (28 loc) · 928 Bytes
/
day6.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package main
import (
"fmt"
)
// Day6Solution1 finding answers where anyone in group answered yes
func Day6Solution1(input []string, done chan string) {
records := make(chan string)
declarationForms := make(chan customsForm)
go fixInput(input, records)
go getForms(records, declarationForms)
counter := 0
for form := range declarationForms {
counter += len(form.AnyoneAnsweredYes())
}
done <- fmt.Sprintf("part1 anyone in group answered yes sum %v", counter)
}
// Day6Solution2 finding answers where everyone in group answered yes
func Day6Solution2(input []string, done chan string) {
records := make(chan string)
declarationForms := make(chan customsForm)
go fixInput(input, records)
go getForms(records, declarationForms)
counter := 0
for form := range declarationForms {
counter += len(form.EveryoneAnsweredYes())
}
done <- fmt.Sprintf("part2 everyone in group answered yes sum %v", counter)
}