Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=0;b=0;
res=1;
assert(isequal(XNOR(a,b),res))
|
2 | Pass |
a=1;b=1;
res=1;
assert(isequal(XNOR(a,b),res))
|
3 | Pass |
a=1;b=0;
res=0;
assert(isequal(XNOR(a,b),res))
|
4 | Pass |
a=0;b=1;
res=0;
assert(isequal(XNOR(a,b),res))
|
5 | Pass |
a=[0 0 1 1];b=[1 0 1 0];
res=[0 1 1 0];
assert(isequal(XNOR(a,b),res))
|
The Goldbach Conjecture, Part 2
1285 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Back to basics 8 - Matrix Diagonals
782 Solvers
Determine the number of odd integers in a vector
435 Solvers
Basic commands - Least common multiple
151 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!