Bash (why)
This commit is contained in:
parent
e1a39c069d
commit
b7daaa989f
27
bash/2015/1/problem.sh
Normal file
27
bash/2015/1/problem.sh
Normal 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
6
bash/bin/run
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
year=$1
|
||||||
|
day=$2
|
||||||
|
|
||||||
|
time bash $year/$day/problem.sh
|
Loading…
Reference in New Issue
Block a user