+2
-2
2025/4/gleam/src/main.gleam
+2
-2
2025/4/gleam/src/main.gleam
···
67
67
68
68
case roll, neighbours < 4 {
69
69
1, True -> #(total + 1, bit_array.append(new_map, <<".">>))
70
-
0, _ -> #(total, bit_array.append(new_map, <<".">>))
71
-
1, _ | _, _ -> #(total, bit_array.append(new_map, <<"@">>))
70
+
1, _ -> #(total, bit_array.append(new_map, <<"@">>))
71
+
_, _ -> #(total, bit_array.append(new_map, <<".">>))
72
72
}
73
73
})
74
74