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 | Pass |
v = [4 7 1 6];
x_correct = 7;
assert(isequal(largest(v),x_correct))
|
3 | Pass |
v = [1 1 1 1];
x_correct = 1;
assert(isequal(largest(v),x_correct))
|
4 | Pass |
v = [4 3 2 1];
x_correct = 4;
assert(isequal(largest(v),x_correct))
|
5 | Pass |
v = [1 2 3 4];
x_correct = 4;
assert(isequal(largest(v),x_correct))
|
6 | Pass |
v = [1 1 3 5];
x_correct = 5;
assert(isequal(largest(v),x_correct))
|
7 | Pass |
v = [3 3 2 4];
x_correct = 4;
assert(isequal(largest(v),x_correct))
|
8 | Pass |
v = [2 3 1 6];
x_correct = 6;
assert(isequal(largest(v),x_correct))
|
9 | Pass |
v = [3 3 3 9];
x_correct = 9;
assert(isequal(largest(v),x_correct))
|
5833 Solvers
1836 Solvers
Find the maximum number of decimal places in a set of numbers
739 Solvers
Sum the numbers on the main diagonal
453 Solvers
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!