Some solutions for the julia path

This commit is contained in:
2025-08-04 19:44:03 +02:00
parent 5c52e8e34d
commit 8296c79f68
104 changed files with 4373 additions and 0 deletions

21
julia/secrets/HINTS.md Normal file
View File

@@ -0,0 +1,21 @@
# Hints
Some (not all) of the tests assume the value is `Int32`, so please avoid forcing it to be anything else.
## 1. Shift back the bits
- This is a right-shift.
- Note the instruction that the results should be left-filled with zeros.
## 2. Set some bits
- Bits are set by bitwise OR with a mask. This is extremely common.
## 3. Flip specific bits
- There is an old joke among programmers that cryptographers discovered XOR and forgot to read the rest of the manual.
## 4. Clear specific bits
- Simple AND logic will do the opposite of what you need.
- How do you flip all the bits in the mask?