aboutsummaryrefslogtreecommitdiff
path: root/2015
diff options
context:
space:
mode:
Diffstat (limited to '2015')
-rwxr-xr-x2015/12/puzzle-1.sh2
-rwxr-xr-x2015/12/puzzle-2.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/2015/12/puzzle-1.sh b/2015/12/puzzle-1.sh
index 7b509fe..e1e1f0e 100755
--- a/2015/12/puzzle-1.sh
+++ b/2015/12/puzzle-1.sh
@@ -1,3 +1,3 @@
#!/usr/bin/env sh
-tr -c '\-0-9' '\n' <input | squash | paste -sd+ | bc
+tr -c '\-0-9' '\n' <input | grep . | paste -sd+ | bc
diff --git a/2015/12/puzzle-2.sh b/2015/12/puzzle-2.sh
index e97fc8a..b1e649c 100755
--- a/2015/12/puzzle-2.sh
+++ b/2015/12/puzzle-2.sh
@@ -2,6 +2,6 @@
jq 'walk(if type == "object" then del(select(.[] == "red")) end)' input \
| tr -c '\-0-9' '\n' \
- | squash \
+ | grep . \
| paste -sd+ \
| bc