AdventOfCode2023/09/README.md

18 lines
385 B
Markdown
Raw Permalink Normal View History

2023-12-09 11:53:39 +01:00
# [Day 9](https://adventofcode.com/2023/day/9)
:gift::gift::gift::gift::gift::gift::gift::gift::gift:
Today's language: **Rust**
Lines of code: **88**
Execution time: **0,003 s**
This solution uses a custom triangle datatype.
It is a bit overkill code-wise, but efficient with memory and re-allocations.
```shell
rustc day09.rs
./day09
```
<!-- implemented triangle datatype -->