Skip to content

Commit

Permalink
update : removed duplicated work
Browse files Browse the repository at this point in the history
  • Loading branch information
mattduerrmeier authored and swaroopch committed Jun 15, 2020
1 parent 2800a7f commit 5a3f1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op_exp.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Here is a quick overview of the available operators:
- `5 | 3` gives `7` (`0101 | 0011` gives `0111`)

- `^` (bit-wise XOR)
- Bitwise XOR of the numbers: if both bits (`1 or 0`) are the the same, the result is `0`. Else it's `1`.
- Bitwise XOR of the numbers: if both bits (`1 or 0`) are the same, the result is `0`. Else it's `1`.
- `5 ^ 3` gives `6` (`O101 ^ 0011` gives `0110`)

- `~` (bit-wise invert)
Expand Down

0 comments on commit 5a3f1f1

Please sign in to comment.