this post was submitted on 06 Dec 2023
3 points (100.0% liked)

Advent of Code

1 readers
1 users here now

Advent of Code is an annual Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like.

https://adventofcode.com

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] bobredfox@feddit.de 1 points 10 months ago

Ended Up with iterating over all possible solutions and filter all possibilitys which where greater than the record. Not elegant, but sufficient fast for this purpose.

For Part 2 I merged the values by hand in the Input data.

Solution in Rust