Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 5 3];
y_correct = [3 5 1];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
%%
x = [1 6 5 87 3];
y_correct = [3 87 5 6 1];
assert(isequal(your_fcn_name(x),y_correct))
|
Sort a list of complex numbers based on far they are from the origin.
3791 Solvers
647 Solvers
Find the peak 3n+1 sequence value
790 Solvers
263 Solvers
Matlab Basics - Convert a row vector to a column vector
300 Solvers