Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 212 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 212 Bytes

2.13

From above discuss, we know:

x m bis bic
0 0 0 0
0 1 1 0
1 0 1 1
1 1 1 0

So:

A. bool_or: result = bis(x,y).

B. bool_xor: result = bis( bic(x,y), bic(y,x)).