diff --git a/README.md b/README.md index 8889096..08fd4e3 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This is a repository for my solutions for the [advent of code 2023](https://adve | Day | Language | Lines of code | Execuction time | Comment | -|:---: |:---: | ---: | --- | | +|:---: |:---: | ---: | ---: |--- | | [01](01) | Python | 3 | 0,021 s | one-liners | | [02](02) | Rust | 49 | 0,002 s | my very first rust program | | [03](03) | Rust | 85 | 0,006 s | | diff --git a/make_readme.sh b/make_readme.sh index 6f59778..f9cb82e 100755 --- a/make_readme.sh +++ b/make_readme.sh @@ -1,7 +1,7 @@ #!/bin/bash table="| Day | Language | Lines of code | Execuction time | Comment |\n" -table+="|:---:|:---:| ---:| --- |\n" +table+="|:---:|:---:| ---:| ---: |--- |\n" for day in $(seq -f "%02g" 1 25); do [[ ! -d "$day" ]] && continue # echo $day