advent2021/two_first.awk

4 lines
81 B
Awk
Executable File

#!/usr/bin/awk -f
/forward/ {x+=$2} /down/ {y+=$2} /up/ {y-=$2} END {print x*y}