diff --git a/1/README.md b/1/README.md index f21b36c..5b458c9 100644 --- a/1/README.md +++ b/1/README.md @@ -1,4 +1,4 @@ -# Day 1 +# [https://adventofcode.com/2022/day/1](Day 1) ```shell # Find the Elf carrying the most Calories. How many total Calories is that Elf carrying? awk -f day1-1.awk input.txt diff --git a/1/testfile b/1/testfile deleted file mode 100644 index 676fc30..0000000 --- a/1/testfile +++ /dev/null @@ -1 +0,0 @@ -67027 diff --git a/2/README.md b/2/README.md new file mode 100644 index 0000000..67181c0 --- /dev/null +++ b/2/README.md @@ -0,0 +1,7 @@ +# [https://adventofcode.com/2022/day/2](Day 2) + +```shell +# What would your total score be if everything goes exactly according to your strategy guide? +g++ main.cpp -o day2 +./day2 +``` diff --git a/README.md b/README.md new file mode 100644 index 0000000..71efe8f --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# Advent of code 2022 +This is a repository for my solutions for the [https://adventofcode.com/2022](advent of code 2022). + +I will try to use as many different languages am not necessarily trying to do it the best or most efficient way, + +Also, checkout the repositories of my friends who do stuff in go and Visual Basic: +- [https://git.quintern.xyz/TheShinyMelon/AOC_2022](Daniel) +- [https://github.com/JonasBordewick/advent_of_code_2022](Jonas)