9 lines
297 B
Markdown
9 lines
297 B
Markdown
|
# Hints
|
||
|
|
||
|
## General
|
||
|
|
||
|
- Use `Bitwise` (or div/rem).
|
||
|
- If you use `Bitwise`, an easy way to see if a particular bit is set is to compare
|
||
|
the binary AND (`&&&`) of a set of bits with the particular bit pattern you
|
||
|
want to check, and determine if the result is the same as the pattern you're
|
||
|
checking.
|