Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 196 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 196 Bytes

2.8

  • a = [01101001]
  • b = [01010101]
Operation Result
~a [10010110]
~b [10101010]
a & b [01000001]
a | b [01111101]
a ^ b [00111100]