Created
December 2, 2025 04:34
-
-
Save rep-movsd/0c4fd104f3032f625c07adf9b2fc181f to your computer and use it in GitHub Desktop.
Advent Of Code 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Exactly same code as day01_part1.cpp except this | |
| auto rotator = [&state](int i) { | |
| auto next = state + i % 100; | |
| auto ret = ((state > 0 && next <= 0) || next >= 100) + abs(i) / 100; | |
| state = (next + 100) % 100; | |
| return ret; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment