aboutsummaryrefslogtreecommitdiff
path: root/2022/01/puzzle-2.awk
diff options
context:
space:
mode:
Diffstat (limited to '2022/01/puzzle-2.awk')
-rwxr-xr-x2022/01/puzzle-2.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/2022/01/puzzle-2.awk b/2022/01/puzzle-2.awk
index d8bbaaa..6186084 100755
--- a/2022/01/puzzle-2.awk
+++ b/2022/01/puzzle-2.awk
@@ -1,7 +1,7 @@
#!/usr/bin/awk -f
-/[0-9]+/ { acc += $1; next }
-{
+/[0-9]+/ { acc += $1 }
+!/./ {
if (acc > max[1]) {
max[3] = max[2];
max[2] = max[1];