Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3];
a_correct = x;
b_correct = x.^2;
f=f2f();
[a b]=f(x);
assert(isequal(a,a_correct)&&isequal(b,b_correct))
|
2 | Pass |
%%
x = [-1 2 -3 5 -1];
a_correct = x;
b_correct = x.^2;
f=f2f();
[a b]=f(x);
assert(isequal(a,a_correct)&&isequal(b,b_correct))
|
Sort a list of complex numbers based on far they are from the origin.
3793 Solvers
1055 Solvers
1123 Solvers
84 Solvers
1780 Solvers