This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(5);
y_correct = 25;
assert(isequal(your_fcn_name(x),y_correct))
a =
17
23
4
10
11
24
5
6
12
18
1
7
13
19
25
8
14
20
21
2
15
16
22
3
9
|
2 | Pass |
x = [2 4 9 0 7 19;3 4 1 2 0 6];
y_correct = 19;
assert(isequal(your_fcn_name(x),y_correct))
a =
2
3
4
4
9
1
0
2
7
0
19
6
|
3 | Pass |
x = [2 4 9 0 7 19;3 4 1 2 0 6]';
y_correct = 19;
assert(isequal(your_fcn_name(x),y_correct))
a =
2
4
9
0
7
19
3
4
1
2
0
6
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
1263 Solvers
5115 Solvers
292 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!