aoc 1 done

This commit is contained in:
Able 2021-12-02 20:01:04 -06:00
commit bccac96c3e
3 changed files with 2038 additions and 0 deletions

26
aoc_1.able Normal file

File diff suppressed because one or more lines are too long

2000
aoc_1_input.txt Normal file

File diff suppressed because it is too large Load diff

12
garbage.sh Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/bash
buff="var data = ["
counter=0
while IFS= read -r line; do
buff+="$line <= $counter,"
counter=$((counter+1))
done < "aoc/aoc_1_input.txt"
buff+="];"
echo $buff >> aoc_1.able