This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=0;b=0;
res=0;
assert(isequal(myXOR(a,b),res))
y =
logical
0
ans =
[]
|
2 | Pass |
a=1;b=1;
res=0;
assert(isequal(myXOR(a,b),res))
y =
logical
0
ans =
[]
|
3 | Pass |
a=1;b=0;
res=1;
assert(isequal(myXOR(a,b),res))
y =
logical
1
ans =
[]
|
4 | Pass |
a=0;b=1;
res=1;
assert(isequal(myXOR(a,b),res))
y =
logical
1
ans =
[]
|
5 | Fail |
a=[0 0 1 1];b=[1 0 1 0];
res=[1 0 0 1];
assert(isequal(myXOR(a,b),res))
|
Back to basics 17 - white space
245 Solvers
Remove white space from the string
168 Solvers
Arrange vector in ascending order
624 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
450 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!