aboutsummaryrefslogtreecommitdiffstats
path: root/day1/one-liner.sh
blob: 3854e982b0a6ab836dc1bdfe2e4be1436490e882 (plain)
1
2
cat input | tr '\n' '+' | sed 's/++/\n/' | bc | sort -n | tail -n 3
# sum the top three with a calculator :)