This commit is contained in:
matthias@arch 2023-12-13 16:28:46 +01:00
parent 756f0fa9a0
commit 5fa40357cd
3 changed files with 31 additions and 0 deletions

16
10/README.md Normal file
View File

@ -0,0 +1,16 @@
# [Day 10](https://adventofcode.com/2023/day/10)
:gift::gift::gift::gift::gift::gift::gift::gift::gift::gift:
Today's language: **Rust**
Lines of code: **136**
Execution time: **0,003 s**
I used lots of simple bitwise operations because I might implement this solution later on my DIY 8-bit computer.
```shell
rustc day10.rs
./day10RUN
```
<!-- lots of bitwise operations -->

13
11/README.md Normal file
View File

@ -0,0 +1,13 @@
# [Day 11](https://adventofcode.com/2023/day/11)
:gift::gift::gift::gift::gift::gift::gift::gift::gift::gift::gift:
Today's language: **Rust**
Lines of code: **66**
Execution time: **0,005 s**
```shell
rustc day11.rs
./day11RUN
```

View File

@ -3,6 +3,8 @@
Today's language: **LANG**
Lines of code: **LOC**
Execution time: **EXECTIME**
```shell