Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6;7 8 9];
y_correct = [2 1 3;5 4 6;8 7 9];
assert(isequal(your_fcn_name(x),y_correct))
y =
2 1 3
5 4 6
8 7 9
|
2 | Pass |
x = [1 2 3 4 5 6 7;7 6 5 4 3 2 1];
y_correct = [6 2 3 4 5 1 7;2 6 5 4 3 7 1];
assert(isequal(your_fcn_name(x),y_correct))
y =
6 2 3 4 5 1 7
2 6 5 4 3 7 1
|
28001 Solvers
Sum the 'edge' values of a matrix
232 Solvers
Integer Sequence - II : New Fibonacci
252 Solvers
2622 Solvers
Find the next Fibonacci number
223 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!