This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
filetext = fileread('largest.m');
assert(isempty(strfind(filetext, 'regexp')),'regexp hacks are forbidden')
assert(isempty(strfind(filetext, 'max')),'max() forbidden')
assert(isempty(strfind(filetext, 'min')),'min() forbidden')
assert(isempty(strfind(filetext, 'sort')),'sort() forbidden')
|
2 | Fail |
a = 4; b = 7; c = 1; d = 6;
x_correct = 7;
assert(isequal(largest(a, b, c, d),x_correct))
|
3 | Fail |
a = 1; b = 1; c = 1; d = 1;
x_correct = 1;
assert(isequal(largest(a, b, c, d),x_correct))
|
4 | Fail |
a = 4; b = 3; c = 2; d = 1;
x_correct = 4;
assert(isequal(largest(a, b, c, d),x_correct))
|
5 | Fail |
a = 1; b = 2; c = 3; d = 4;
x_correct = 4;
assert(isequal(largest(a, b, c, d),x_correct))
|
6 | Fail |
a = 1; b = 1; c = 3; d = 5;
x_correct = 5;
assert(isequal(largest(a, b, c, d),x_correct))
|
7 | Fail |
a = 3; b = 3; c = 2; d = 4;
x_correct = 4;
assert(isequal(largest(a, b, c, d),x_correct))
|
8 | Fail |
a = 2; b = 3; c = 1; d = 6;
x_correct = 6;
assert(isequal(largest(a, b, c, d),x_correct))
|
9 | Fail |
a = 3; b = 3; c = 3; d = 9;
x_correct = 9;
assert(isequal(largest(a, b, c, d),x_correct))
|
3238 Solvers
Replace multiples of 5 with NaN
358 Solvers
188 Solvers
615 Solvers
Capitilize the first letter of every word in a string
106 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!