advent2025

Advent of Code 2025 Solutions
git clone git://bsandro.tech/advent2025
Log | Files | Refs | LICENSE

commit 997db06eef33167856f71b0385f103c10e1ad15d
parent c35d636d7943d13b0242a57b0ab219ef096bbf95
Author: bsandro <email@bsandro.tech>
Date:   Fri, 12 Dec 2025 10:38:25 +0200

day12 cleanup

Diffstat:
Mday12.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/day12.c b/day12.c @@ -2,7 +2,6 @@ #include <stdbool.h> #include "cputime.h" - #define BUF_LEN 3 int btoi(int bufl, int buf[bufl]) { @@ -62,7 +61,7 @@ int main(void) { } } - // 7 is the rough estimate of 'condensed' shape, I just tried 9 and worked my way down + // 7 is the rough estimate of 'condensed' shape area // test input has magic value of 8. int rough_area = regions_l==3 ? 8 : 7; int p1 = 0;