From 6935393e9c9841f7ae418b235b5c9e0f22418116 Mon Sep 17 00:00:00 2001 From: Nat Lasseter Date: Mon, 28 Oct 2019 22:59:09 +0000 Subject: day 18, part2. part2 is just another uninteresting now do it an impossible number of times type puzzle --- day18/entrypoint | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 day18/entrypoint (limited to 'day18/entrypoint') diff --git a/day18/entrypoint b/day18/entrypoint new file mode 100755 index 0000000..8982d21 --- /dev/null +++ b/day18/entrypoint @@ -0,0 +1,13 @@ +#!/bin/bash + +if [ -x part1 ] ; then + echo -ne "Part 1:\n\t" + time ./part1 < input +fi +if [ -x part1 -a -x part2 ] ; then + echo +fi +if [ -x part2 ] ; then + echo -ne "Part 2:\n\t" + time ./part2 < input +fi -- cgit v1.2.1