Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1 2 5];
y=[5 7 8];
y_correct = [8 7 5 2 1];
assert(isequal(unique_x(x,y),y_correct))
x =
1 2 5 7 8
|
2 | Pass |
x=[1];
y=[1];
y_correct = [1];
assert(isequal(unique_x(x,y),y_correct))
x =
1
|
3 | Pass |
x=[10];
y=[1];
y_correct = [10 1];
assert(isequal(unique_x(x,y),y_correct))
x =
1 10
|
4 | Pass |
x=[1 5 8];
y=[2 4 6 4];
y_correct = [8 6 5 4 2 1];
assert(isequal(unique_x(x,y),y_correct))
x =
1 2 4 5 6 8
|
Back to basics 4 - Search Path
321 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
400 Solvers
Finding an element in a vector
136 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!