advent-of-code/12021/02/02.awk

21 lines
161 B
Awk
Raw Normal View History

2021-12-02 05:09:27 +00:00
BEGIN{
x =0
y = 0
}
{
if($1 == "forward"){
x += $2
}
else if($1 == "down"){
y += $2
}
else if($1 == "up"){
y -= $2
}
}
END{
2021-12-02 05:16:49 +00:00
print x, y
2021-12-02 05:09:27 +00:00
print x*y
}