@@ -7,68 +7,29 @@ import (
7
7
"strings"
8
8
)
9
9
10
- // TODO: cleanup and simplify
11
-
12
- func helper (target int , nums []int , i int , cur int , op string ) bool {
13
- if i == len (nums ) {
14
- return cur == target
15
- }
16
- if op == "+" {
17
- cur += nums [i ]
18
- } else if op == "*" {
19
- cur *= nums [i ]
20
- } else {
21
- fmt .Println ("bad" )
10
+ func helper (target int , nums []int , i int , cur int , op string , validOps []string ) bool {
11
+ if cur > target {
12
+ return false
22
13
}
23
- return helper (target , nums , i + 1 , cur , "*" ) || helper (target , nums , i + 1 , cur , "+" )
24
- }
25
-
26
- func helper2 (target int , nums []int , i int , cur int , op string ) bool {
27
14
if i == len (nums ) {
28
15
return cur == target
29
16
}
17
+
30
18
if op == "+" {
31
19
cur += nums [i ]
32
20
} else if op == "*" {
33
21
cur *= nums [i ]
34
22
} else if op == "||" {
35
23
cur , _ = strconv .Atoi (strconv .Itoa (cur ) + strconv .Itoa (nums [i ]))
36
24
} else {
37
- fmt .Println ("bad" )
38
- }
39
- return helper2 (target , nums , i + 1 , cur , "*" ) || helper2 (target , nums , i + 1 , cur , "+" ) || helper2 (target , nums , i + 1 , cur , "||" )
40
- }
41
-
42
- func getScore (line string ) int {
43
- split := strings .Split (line , ": " )
44
- target , _ := strconv .Atoi (split [0 ])
45
- numsRaw := strings .Split (split [1 ], " " )
46
- nums := []int {}
47
- for _ , n := range numsRaw {
48
- num , _ := strconv .Atoi (n )
49
- nums = append (nums , num )
25
+ fmt .Println ("bad input" )
50
26
}
51
27
52
- if helper (target , nums , 1 , nums [0 ], "+" ) || helper (target , nums , 1 , nums [0 ], "*" ) {
53
- return target
28
+ out := false
29
+ for _ , nextOp := range validOps {
30
+ out = out || helper (target , nums , i + 1 , cur , nextOp , validOps )
54
31
}
55
- return 0
56
- }
57
-
58
- func getScore2 (line string ) int {
59
- split := strings .Split (line , ": " )
60
- target , _ := strconv .Atoi (split [0 ])
61
- numsRaw := strings .Split (split [1 ], " " )
62
- nums := []int {}
63
- for _ , n := range numsRaw {
64
- num , _ := strconv .Atoi (n )
65
- nums = append (nums , num )
66
- }
67
-
68
- if helper2 (target , nums , 1 , nums [0 ], "+" ) || helper2 (target , nums , 1 , nums [0 ], "*" ) || helper2 (target , nums , 1 , nums [0 ], "||" ) {
69
- return target
70
- }
71
- return 0
32
+ return out
72
33
}
73
34
74
35
func part1 () {
@@ -79,7 +40,20 @@ func part1() {
79
40
80
41
tot := 0
81
42
for _ , line := range lines {
82
- tot += getScore (line )
43
+ split := strings .Split (line , ": " )
44
+ target , _ := strconv .Atoi (split [0 ])
45
+ numsRaw := strings .Split (split [1 ], " " )
46
+ nums := []int {}
47
+ for _ , n := range numsRaw {
48
+ num , _ := strconv .Atoi (n )
49
+ nums = append (nums , num )
50
+ }
51
+
52
+ validOps := []string {"+" , "*" }
53
+ if helper (target , nums , 1 , nums [0 ], "+" , validOps ) || helper (target , nums , 1 , nums [0 ], "*" , validOps ) {
54
+ tot += target
55
+ }
56
+
83
57
}
84
58
fmt .Println (tot )
85
59
}
@@ -92,7 +66,19 @@ func part2() {
92
66
93
67
tot := 0
94
68
for _ , line := range lines {
95
- tot += getScore2 (line )
69
+ split := strings .Split (line , ": " )
70
+ target , _ := strconv .Atoi (split [0 ])
71
+ numsRaw := strings .Split (split [1 ], " " )
72
+ nums := []int {}
73
+ for _ , n := range numsRaw {
74
+ num , _ := strconv .Atoi (n )
75
+ nums = append (nums , num )
76
+ }
77
+
78
+ validOps := []string {"+" , "*" , "||" }
79
+ if helper (target , nums , 1 , nums [0 ], "+" , validOps ) || helper (target , nums , 1 , nums [0 ], "*" , validOps ) || helper (target , nums , 1 , nums [0 ], "||" , validOps ) {
80
+ tot += target
81
+ }
96
82
}
97
83
fmt .Println (tot )
98
84
}
0 commit comments