This repository has been archived on 2021-12-17. You can view files and clone it, but cannot push or open issues or pull requests.
aoc-2021/02/solution-part1.awk

9 lines
126 B
Awk

BEGIN { FS=" " }
/forward/ { h_pos += $2 }
/down/ { depth += $2 }
/up/ { depth -= $2 }
END { print depth * h_pos }