Skip to content

Commit

Permalink
Update operator.md
Browse files Browse the repository at this point in the history
  • Loading branch information
BigNoobWasTaken authored Jan 27, 2024
1 parent 9d4635e commit 6ba0826
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/1-bit/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ Look at the binary operators table below, we can see the last digit of number re

| a | b | a * b | a & b |
|:-:|:-:|:-:|:-:|
|00000000**0**|00000000**0**|00000000**0**|00000000**0**|
|00000000**0**|00000000**1**|00000000**0**|00000000**0**|
|00000000**1**|00000000**0**|00000000**0**|00000000**0**|
|00000000**1**|00000000**1**|00000000**1**|00000000**1**|
|0000000**0**|0000000**0**|0000000**0**|0000000**0**|
|0000000**0**|0000000**1**|0000000**0**|0000000**0**|
|0000000**1**|0000000**0**|0000000**0**|0000000**0**|
|0000000**1**|0000000**1**|0000000**1**|0000000**1**|

If you do not know what that binary table means, you can see below table (decimal):

Expand Down

0 comments on commit 6ba0826

Please sign in to comment.