AdventOfCode2022/1/README.md
matthias@arch bdd03ceff2 day 3
2022-12-04 00:52:52 +01:00

10 lines
350 B
Markdown

# [Day 1](https://adventofcode.com/2022/day/1)
:gift:
Today's language: **awk** + **GNU-coretils**
```shell
# Find the Elf carrying the most Calories. How many total Calories is that Elf carrying?
awk -f day1-1.awk input.txt
# Find the top three Elves carrying the most Calories. How many Calories are those Elves carrying in total?
./day1.2.sh
```