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))
ans =
[]
|
2 | Pass |
x=[1];
y=[1];
y_correct = [1];
assert(isequal(unique_x(x,y),y_correct))
ans =
[]
|
3 | Pass |
x=[10];
y=[1];
y_correct = [10 1];
assert(isequal(unique_x(x,y),y_correct))
ans =
[]
|
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))
ans =
[]
|
337 Solvers
651 Solvers
283 Solvers
292 Solvers
Sum the squares of numbers from 1 to n
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!