Bit Manipulation: CORE CONCEPTS
Bit manipulation is a technique that involves directly manipulating the individual bits of a number. It's often used to optimize algorithms and solve problems efficiently.
BITWISE OPERATORS
Observations of XOR :
a ^ 1 = ā (compliment of a)
a ^ 0...
bitmanipulation.hashnode.dev2 min read