Add 2022 solutions

This commit is contained in:
Thraix
2025-11-26 23:02:30 +01:00
parent 908b362ee5
commit ff9bd6ce01
76 changed files with 3840 additions and 27 deletions
-2
View File
@@ -6,7 +6,6 @@ if [ ! -e cookies.txt ]; then
fi
list=$(find -name "Day*.cpp" | awk -F '/' '{print $3 "/" $4}' | awk -F '.' '{print $1}' | sed 's/Day//g' | sort)
echo $list
for item in $list; do
echo $item
@@ -23,5 +22,4 @@ for item in $list; do
touch "res/$year/day$day/test_input.txt"
curl -s --cookie cookies.txt https://adventofcode.com/$year/day/$webitem/input >$dir
fi
exit
done