From f5ba7165c089f308d7745ba9baec827bab97fed2 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Sun, 25 Jul 2021 12:07:30 +0200 Subject: [PATCH] README -> README.md + added my own rules --- README | 10 ---------- README.md | 12 ++++++++++++ 2 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100644 index b3cff78..0000000 --- a/README +++ /dev/null @@ -1,10 +0,0 @@ -advent of code 2020: https://adventofcode.com/2020 - -My solutions to the 2 daily exercises in both C and Bash (also Cobol for day 1). - -Status: - -Done: - Day 1: Bash, C, and Cobol - Days 2-18: Bash and C - Days 19: Bash diff --git a/README.md b/README.md new file mode 100644 index 0000000..b0b5175 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +#### My solutions to the [advent of code 2020](https://adventofcode.com/2020) + +My solutions to the 2 daily exercises in both C and Bash (also Cobol for day 1, I may try some other languages). + +#### My own rules: + - **C** : Only *standard* libraries (for example, no external sort). + - **bash**: Pure bash only: No external commands allowed (grep, sed, etc...). + +#### Done: + - Day 1: Bash, C, and Cobol + - Days 2-18: Bash and C + - Days 19-20: Bash