aoc icon indicating copy to clipboard operation
aoc copied to clipboard

🎄 My solutions and walkthroughs for Advent of Code and more related stuff.

Results 3 aoc issues
Sort by recently updated
recently updated
newest added

After "Here's the updated function:" in the 2019 Day 18 write-up, the method name is still `minimum_steps` but should be `explore`. Thanks so much for doing these write-ups. They are...

typo

I think the 'or' on line 6090 shouldn't be there https://github.com/mebeim/aoc/blob/4a1eed17e056e228849579a06baef03d7feb2c6f/2020/README.md?plain=1#L6090

typo

The type annotation for the `solve` function declaration is incorrect. `groups: tuple[int]` means `len(groups) == 1`. Correct type annotaation is `tuple[int, ...]`.