Sorry, I just wondered if xor was somehow restricted on this cody . . . I guess not.
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
|
2486 Solvers
746 Solvers
Test if two numbers have the same digits
187 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
2101 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!