Bash (why)

This commit is contained in:
Bill Rossi 2023-12-19 18:26:53 -05:00
parent e1a39c069d
commit b7daaa989f
2 changed files with 33 additions and 0 deletions

27
bash/2015/1/problem.sh Normal file
View File

@ -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

6
bash/bin/run Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
time bash $year/$day/problem.sh