Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:5;
y = 2:6;
y_correct = 1;
assert(isequal(set_diff(x,y) ,y_correct))
|
2 | Fail |
x = 1:5;
y = 2:6;
y_correct = 6;
assert(isequal(set_diff(y,x) ,y_correct))
|
3 | Fail |
x=2:4;
y=4:2;
y_correct = [2 3 4];
assert(isequal(set_diff(x,y) ,y_correct))
|
4 | Fail |
x=0:4;
y=2:4;
y_correct = [0 1];
assert(isequal(set_diff(x,y) ,y_correct))
|
Is my wife right? Now with even more wrong husband
1241 Solvers
308 Solvers
343 Solvers
Find the area of the four walls
202 Solvers
548 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!