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))
y =
8 7 5 2 1
|
2 | Pass |
x=[1];
y=[1];
y_correct = [1];
assert(isequal(unique_x(x,y),y_correct))
y =
1
|
3 | Pass |
x=[10];
y=[1];
y_correct = [10 1];
assert(isequal(unique_x(x,y),y_correct))
y =
10 1
|
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))
y =
8 6 5 4 2 1
|
8421 Solvers
17162 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
265 Solvers
Getting the row and column location from a matrix
192 Solvers
Find out missing number from a vector of 9 elements
208 Solvers