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 =
0
|
2 | Pass |
%%
a=1;b=1;
res=0;
assert(isequal(myXOR(a,b),res))
y =
0
|
3 | Pass |
%%
a=1;b=0;
res=1;
assert(isequal(myXOR(a,b),res))
y =
1
|
4 | Pass |
%%
a=0;b=1;
res=1;
assert(isequal(myXOR(a,b),res))
y =
1
|
5 | Pass |
%%
a=[0 0 1 1];b=[1 0 1 0];
res=[1 0 0 1];
assert(isequal(myXOR(a,b),res))
y =
1 0 0 1
|
1936 Solvers
How to find the position of an element in a vector without using the find function
2320 Solvers
Determine Whether an array is empty
561 Solvers
Rotate input square matrix 90 degrees CCW without rot90
320 Solvers
Create matrix of replicated elements
266 Solvers