This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5];
y_correct = 3;
assert(isequal(your_fcn_name(x),y_correct))
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'median')),'median forbidden')
x =
1 2 3 4 5
y =
3
|
2 | Pass |
x = [4 4 5 6 1 2];
y_correct = 4;
assert(isequal(your_fcn_name(x),y_correct))
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'median')),'median forbidden')
x =
1 2 4 4 5 6
y =
4
|
3 | Pass |
x = [5 5 6 1 2 4];
y_correct = 4.5;
assert(isequal(your_fcn_name(x),y_correct))
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'median')),'median forbidden')
x =
1 2 4 5 5 6
y =
4.5000
|
272 Solvers
464 Solvers
282 Solvers
94 Solvers
70 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!