my solutions to advent of code
aoc advent-of-code

doesnt make a difference but cleaner

aylac.top f4003ea3 cb0c6636

verified
Changed files
+2 -2
2025
4
gleam
+2 -2
2025/4/gleam/src/main.gleam
···
case roll, neighbours < 4 {
1, True -> #(total + 1, bit_array.append(new_map, <<".">>))
-
0, _ -> #(total, bit_array.append(new_map, <<".">>))
-
1, _ | _, _ -> #(total, bit_array.append(new_map, <<"@">>))
+
1, _ -> #(total, bit_array.append(new_map, <<"@">>))
+
_, _ -> #(total, bit_array.append(new_map, <<".">>))
}
})