Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0:9;
y_correct = 1:10;
assert(isequal(getrank(x),y_correct))
y =
1 2 3 4 5 6 7 8 9 10
|
2 | Pass |
x = 9:-1:0;
y_correct = 10:-1:1;
assert(isequal(getrank(x),y_correct))
y =
10 9 8 7 6 5 4 3 2 1
|
3 | Pass |
x = [.5 .8 .1 .9 .7];
y_correct = [2 4 1 5 3];
assert(isequal(getrank(x),y_correct))
y =
2 4 1 5 3
|
4 | Pass |
x = [2 -1 7 -6 3 2];
y_correct = [3 2 6 1 5 4] ;
assert(isequal(getrank(x),y_correct))
y =
3 4 2 6 1 5 3 4
y =
3 2 6 1 5 3 4
y =
3 2 6 1 5 4
|
3895 Solvers
Check to see if a Sudoku Puzzle is Solved
279 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
96 Solvers
Create an n-by-n null matrix and fill with ones certain positions
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!