diff --git a/bash/2015/1/problem.sh b/bash/2015/1/problem.sh new file mode 100644 index 0000000..c78e709 --- /dev/null +++ b/bash/2015/1/problem.sh @@ -0,0 +1,27 @@ +input=$(cat "../data/2015/1/input.txt" | sed -E "s/(.)/\1 /g") +read -ra input <<< $input + +floor=0 +for i in "${input[@]}" +do + if [[ $i == '(' ]]; then + floor=$((floor + 1)) + elif [[ $i == ')' ]]; then + floor=$((floor - 1)) + fi +done +echo "Part 1: $floor" + +floor=0 +steps=0 +for i in "${input[@]}" +do + if [[ $i == '(' ]]; then + floor=$((floor + 1)) + elif [[ $i == ')' ]]; then + floor=$((floor - 1)) + fi + steps=$((steps + 1)) + if [[ $floor -lt 0 ]]; then break; fi +done +echo Part 2: $steps diff --git a/bash/bin/run b/bash/bin/run new file mode 100755 index 0000000..47627de --- /dev/null +++ b/bash/bin/run @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +year=$1 +day=$2 + +time bash $year/$day/problem.sh