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))
a =
7
|
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))
a =
2
b =
3
c =
4
|
6 | Pass |
v = [1 1 3 5];
x_correct = 5;
assert(isequal(largest(v),x_correct))
b =
3
c =
5
|
7 | Pass |
v = [3 3 2 4];
x_correct = 4;
assert(isequal(largest(v),x_correct))
c =
4
|
8 | Pass |
v = [2 3 1 6];
x_correct = 6;
assert(isequal(largest(v),x_correct))
a =
3
c =
6
|
9 | Pass |
v = [3 3 3 9];
x_correct = 9;
assert(isequal(largest(v),x_correct))
c =
9
|
4325 Solvers
Solve the set of simultaneous linear equations
273 Solvers
Convert a vector into a number
503 Solvers
find the maximum element of the matrix
348 Solvers
5110 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!