aoc-forth

Advent of code solutions in UF forth
git clone git://git.alexwennerberg.com/aoc-forth
Log | Files | Refs | README

commit 63f805734724d48e5b1c48f15406e6c715cddc07
parent 6cb5d671bfaa2e46a955532d349b8bb5f2604fc9
Author: alex wennerberg <alex@alexwennerberg.com>
Date:   Sun,  4 Dec 2022 00:33:22 -0800

remove debug in day 4

Diffstat:
M2022/04.fs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/2022/04.fs b/2022/04.fs @@ -32,7 +32,7 @@ variable total2 : solve 1000 0 do read-pairs 4dup either-includes if 1 total1 +! then - .s overlaps .s cr if 1 total2 +! then + overlaps if 1 total2 +! then loop total1 ? cr total2 ? bye ;