mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
47dd31f4a1
* Added 5 README files * corrected arithmetic_analysis README * Update audio_filters/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update backtracking/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update bit_manipulation/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> Co-authored-by: John Law <johnlaw.po@gmail.com>
12 lines
722 B
Markdown
12 lines
722 B
Markdown
# Bit manipulation
|
|
|
|
Bit manipulation is the act of manipulating bits to detect errors (hamming code), encrypts and decrypts messages (more on that in the 'ciphers' folder) or just do anything at the lowest level of your computer.
|
|
|
|
* <https://en.wikipedia.org/wiki/Bit_manipulation>
|
|
* <https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations>
|
|
* <https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations>
|
|
* <https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types>
|
|
* <https://wiki.python.org/moin/BitManipulation>
|
|
* <https://wiki.python.org/moin/BitwiseOperators>
|
|
* <https://www.tutorialspoint.com/python3/bitwise_operators_example.htm>
|