aoc 1 done

master
Able 2021-12-02 20:01:04 -06:00
commit 86211a20ff
No known key found for this signature in database
GPG Key ID: 2BB8F62388A6A225
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