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))
ans =
1
|
2 | Pass |
%%
x = 1:5;
y = 2:6;
y_correct = 6;
assert(isequal(set_diff(y,x) ,y_correct))
ans =
6
|
3 | Pass |
%%
x=2:4;
y=4:2;
y_correct = [2 3 4];
assert(isequal(set_diff(x,y) ,y_correct))
ans =
2 3 4
|
4 | Pass |
%%
x=0:4;
y=2:4;
y_correct = [0 1];
assert(isequal(set_diff(x,y) ,y_correct))
ans =
0 1
|
Back to basics 25 - Valid variable names
293 Solvers
Find the position of first minimum value in an integer array with numbers
116 Solvers
Is this triangle right-angled?
2396 Solvers
548 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!