-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.go
100 lines (81 loc) · 1.73 KB
/
code.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"advent-of-code/helper"
"fmt"
"path"
"regexp"
"runtime"
"strings"
"time"
)
func main() {
_, f, _, _ := runtime.Caller(0)
cwd := path.Join(path.Dir(f))
input := helper.ReadInput(cwd, helper.NewLine)
iValues := input.Strings()
// Execute
start := time.Now()
result01 := part01(iValues)
result02 := part02(iValues)
executionTime := helper.ExecutionTime(time.Since(start))
fmt.Printf("Solution Part 1: %v\n", result01)
fmt.Printf("Solution Part 2: %v\n", result02)
fmt.Printf("Execution time: %s\n", executionTime)
helper.SaveBenchmarkTime(executionTime, cwd)
// Testing
helper.TestResults(
[]helper.TestingValue{
helper.TestingValue{Result: result01, Expect: 255},
helper.TestingValue{Result: result02, Expect: 55},
},
)
}
// Task code
func part01(input []string) int {
count := 0
vowel := regexp.MustCompile(`[aeiou]{1}.*[aeiou]{1}.*[aeiou]{1}.*`)
restricted := regexp.MustCompile(`(ab|cd|pq|xy)`)
hasRepeatedLetters := func(s string, offset int) bool {
for i := 0; i < len(s)-1; i++ {
if s[i] == s[i+1] {
return true
}
}
return false
}
for _, s := range input {
if vowel.MatchString(s) &&
hasRepeatedLetters(s, 1) &&
!restricted.MatchString(s) {
count++
}
}
return count
}
func part02(input []string) int {
count := 0
hasRepeatedLetters := func(s string) bool {
for i := 0; i < len(s)-2; i++ {
if s[i] == s[i+2] {
return true
}
}
return false
}
for _, s := range input {
if hasRepeatedLetters(s) &&
hasRepeatedDoubleLetters(s) {
count++
}
}
return count
}
func hasRepeatedDoubleLetters(s string) bool {
for i := 0; i < len(s)-1; i++ {
pOne := s[i : i+2]
if strings.Count(s, pOne) > 1 {
return true
}
}
return false
}