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))
ans =
0
|
2 | Pass |
%%
a=1;b=1;
res=0;
assert(isequal(myXOR(a,b),res))
ans =
0
|
3 | Pass |
%%
a=1;b=0;
res=1;
assert(isequal(myXOR(a,b),res))
ans =
1
|
4 | Pass |
%%
a=0;b=1;
res=1;
assert(isequal(myXOR(a,b),res))
ans =
1
|
5 | Pass |
%%
a=[0 0 1 1];b=[1 0 1 0];
res=[1 0 0 1];
assert(isequal(myXOR(a,b),res))
ans =
1 0 0 1
|
Find the sum of all the numbers of the input vector
25601 Solvers
Solve the set of simultaneous linear equations
171 Solvers
264 Solvers
341 Solvers
Matlab Basics - Convert a row vector to a column vector
300 Solvers