Skip to content

Commit c4dda91

Browse files
committed
cleaner now
1 parent 99c73d7 commit c4dda91

File tree

1 file changed

+36
-50
lines changed

1 file changed

+36
-50
lines changed

7/main.go

+36-50
Original file line numberDiff line numberDiff line change
@@ -7,68 +7,29 @@ import (
77
"strings"
88
)
99

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
2213
}
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 {
2714
if i == len(nums) {
2815
return cur == target
2916
}
17+
3018
if op == "+" {
3119
cur += nums[i]
3220
} else if op == "*" {
3321
cur *= nums[i]
3422
} else if op == "||" {
3523
cur, _ = strconv.Atoi(strconv.Itoa(cur) + strconv.Itoa(nums[i]))
3624
} 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")
5026
}
5127

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)
5431
}
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
7233
}
7334

7435
func part1() {
@@ -79,7 +40,20 @@ func part1() {
7940

8041
tot := 0
8142
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+
8357
}
8458
fmt.Println(tot)
8559
}
@@ -92,7 +66,19 @@ func part2() {
9266

9367
tot := 0
9468
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+
}
9682
}
9783
fmt.Println(tot)
9884
}

0 commit comments

Comments
 (0)