aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Add day 6 solutions. Both, naive and more elaborate.Andreas Grois2021-12-111-0/+2
| | | | | | | | | | The naive implementation uses simple ring buffers and scales linearly with the number of days needed. The matrix based implementation uses matrix multiplication (implemented in a brain-dead way inline here) and has the same scaling behaviour, however implementing it showed that the matrix is correct. The closed form is, well, a closed form based on the matrix based solution, but working in the matrix' Eigenspace.
* Remove dependency on unsafe dyn-cloneAndreas Grois2021-12-041-1/+0
|
* First working day3 part 2 implementation. It sucks.Andreas Grois2021-12-041-0/+1
|
* Day 2 and some additional Day 1 solutionsAndreas Grois2021-12-021-0/+3
|
* InitialAndreas Grois2021-12-021-0/+10