Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = '0101';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
ans =
1
|
2 | Pass |
%%
x = '0100';
y_correct = 0;
assert(isequal(even_parity(x),y_correct))
ans =
0
|
3 | Pass |
%%
x = '0111';
y_correct = 0;
assert(isequal(even_parity(x),y_correct))
ans =
0
|
4 | Pass |
%%
x = '1111';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
ans =
1
|
5 | Pass |
%%
x = '0000';
y_correct = 1;
assert(isequal(even_parity(x),y_correct))
ans =
1
|
219 Solvers
436 Solvers
462 Solvers
413 Solvers
Average speed for the entire trip
111 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!