exercism/elixir/secret-handshake/HINTS.md

9 lines
297 B
Markdown
Raw Permalink Normal View History

2024-03-11 12:03:00 +00:00
# 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.