Skip to content

Commit

Permalink
Update remark
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Jan 31, 2024
1 parent dabfe83 commit c0bcdcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Every day is packaged up to take exactly one command-line argument, the input fi
- Visualize the input with GraphViz (day 8, 20, 23)
- Some puzzles are actually reverse-engineering exercises and rely on undocumented input constraints to be solved efficiently or even feasibly at all (day 8, 20, 23)
- Take the [LCM](https://en.wikipedia.org/wiki/Least_common_multiple) to solve cycle alignment problems (day 8, 20)
- More complex problems would likely require the [CRT](https://en.wikipedia.org/wiki/Chinese_remainder_theorem), [like in previous years](https://github.com/fwcd/advent-of-code-2020/blob/18c3ba9820cb52627366a632ccaab233a6d9f563/day13/src/day13.c#L39-L59)
- If there are offsets, use the [CRT](https://en.wikipedia.org/wiki/Chinese_remainder_theorem) ([like in previous years](https://github.com/fwcd/advent-of-code-2020/blob/18c3ba9820cb52627366a632ccaab233a6d9f563/day13/src/day13.c#L39-L59))
- Binary counters can elegantly be modeled as chains of flip flop (day 20)

## Previous years
Expand Down
2 changes: 1 addition & 1 deletion README.md.gyb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Every day is packaged up to take exactly one command-line argument, the input fi
- Visualize the input with GraphViz (day 8, 20, 23)
- Some puzzles are actually reverse-engineering exercises and rely on undocumented input constraints to be solved efficiently or even feasibly at all (day 8, 20, 23)
- Take the [LCM](https://en.wikipedia.org/wiki/Least_common_multiple) to solve cycle alignment problems (day 8, 20)
- More complex problems would likely require the [CRT](https://en.wikipedia.org/wiki/Chinese_remainder_theorem), [like in previous years](https://github.com/fwcd/advent-of-code-2020/blob/18c3ba9820cb52627366a632ccaab233a6d9f563/day13/src/day13.c#L39-L59)
- If there are offsets, use the [CRT](https://en.wikipedia.org/wiki/Chinese_remainder_theorem) ([like in previous years](https://github.com/fwcd/advent-of-code-2020/blob/18c3ba9820cb52627366a632ccaab233a6d9f563/day13/src/day13.c#L39-L59))
- Binary counters can elegantly be modeled as chains of flip flop (day 20)

## Previous years
Expand Down

0 comments on commit c0bcdcc

Please sign in to comment.