This gives expected results, but still not accepted. wht is the issue. pls comment
Your function is named abc--the test suite wants it to be named your_fcn_name.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [7 10 6 4];
y_correct = 9;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Fail |
x = [1 2 3 2];
y_correct = 3;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Fail |
x = -5:5:30;
y_correct = 35;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Fail |
x = [45 -16 34 19 120];
y_correct = 227;
assert(isequal(your_fcn_name(x),y_correct))
|
Sort a list of complex numbers based on far they are from the origin.
3794 Solvers
1313 Solvers
245 Solvers
Simple equation: Annual salary
3410 Solvers
255 Solvers