aboutsummaryrefslogtreecommitdiff
path: root/aoc2023
diff options
context:
space:
mode:
authorHJ <thechairman@thechairman.info>2023-12-03 10:30:08 -0500
committerHJ <thechairman@thechairman.info>2023-12-03 10:30:08 -0500
commit8a521c9df766b733f03d357340f74935c65f7de7 (patch)
tree6982ddf72f6d6f27154b589d6902bcaab55d2fbf /aoc2023
parent9f0516bbc9a6f9f7128cbf8fd8774949ea32064b (diff)
downloadgleam_aoc-8a521c9df766b733f03d357340f74935c65f7de7.tar.gz
gleam_aoc-8a521c9df766b733f03d357340f74935c65f7de7.zip
day 3 revisions
Diffstat (limited to 'aoc2023')
-rw-r--r--aoc2023/src/day3/solve.gleam13
1 files changed, 4 insertions, 9 deletions
diff --git a/aoc2023/src/day3/solve.gleam b/aoc2023/src/day3/solve.gleam
index 21acd26..fa16bb8 100644
--- a/aoc2023/src/day3/solve.gleam
+++ b/aoc2023/src/day3/solve.gleam
@@ -5,7 +5,6 @@ import gleam/string
import gleam/list
import gleam/int
import gleam/order.{type Order, Eq}
-import gleam/result
type Coord {
Coord(x: Int, y: Int)
@@ -102,7 +101,7 @@ fn all_neighbors(c: Coord) -> List(Coord) {
}
}
-fn check_part_neighbors(part: Part, board: Board) -> Result(Int, Nil) {
+fn sum_valid_parts(acc: Int, part: Part, board: Board) -> Int {
let neighbors =
part.coords
|> list.flat_map(all_neighbors)
@@ -110,8 +109,8 @@ fn check_part_neighbors(part: Part, board: Board) -> Result(Int, Nil) {
let sym = [Ok(Symbol(Gear)), Ok(Symbol(SomethingElse))]
case list.any(neighbors, fn(c) { list.contains(sym, dict.get(board, c)) }) {
- True -> Ok(part.part_number)
- False -> Error(Nil)
+ True -> acc + part.part_number
+ False -> acc
}
}
@@ -121,11 +120,7 @@ pub fn part1(input: String) -> Int {
board
|> find_all_part_digits
|> to_parts
- |> io.debug
- |> list.map(check_part_neighbors(_, board))
- |> io.debug
- |> result.values
- |> int.sum
+ |> list.fold(0, fn(acc, p) { sum_valid_parts(acc, p, board) })
}
fn to_part_with_neighbors(part: Part) -> Part {