summary refs log tree commit diff homepage
path: root/2018
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-12-01 00:52:20 -0500
committerJune McEnroe <june@causal.agency>2020-11-22 00:14:25 -0500
commit3ee6067a6f5c7ff3df4d310e505fc417cdc3bd59 (patch)
treefb079c5e219beeffb5cb0c80a55003a9242ec674 /2018
parentSolve day 1 part 1 (diff)
downloadaoc-3ee6067a6f5c7ff3df4d310e505fc417cdc3bd59.tar.gz
aoc-3ee6067a6f5c7ff3df4d310e505fc417cdc3bd59.zip
Solve day 1 part 2
Diffstat (limited to '2018')
-rw-r--r--2018/day01-2.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/2018/day01-2.sh b/2018/day01-2.sh
new file mode 100644
index 0000000..66521fb
--- /dev/null
+++ b/2018/day01-2.sh
@@ -0,0 +1,8 @@
+seq -f "$(cat)" ${1:-150} \
+	| sed 's/^/last/' \
+	| bc \
+	| cat -n \
+	| sort -s -n -k 2 \
+	| uniq -d -f 1 \
+	| sort -b -n \
+	| head -n 1