2
1
Fork 0

Day 2: Add Zsh solution part 2

This commit is contained in:
Mia Herkt 2021-12-02 11:48:04 +01:00
parent 1f329a9d23
commit 4eed3518d6
Signed by: mia
GPG key ID: 72E154B8622EC191

26
02/solution_2.zsh Executable file
View file

@ -0,0 +1,26 @@
#!/usr/bin/zsh
integer aim=0
integer h=0
integer v=0
IFS="
"
for line in "${(@f)}"$(<input.txt)
{
cmd=(${(s/ /)line})
case $cmd[1] in
down)
((aim += $cmd[2]))
;;
up)
((aim -= $cmd[2]))
;;
forward)
((h += $cmd[2]))
((v += aim * $cmd[2]))
;;
esac
}
print Answer: $((h * v))