Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 3 5 4 2];
y = 2
posX_correct = 5;
assert(isequal(locatePos(x,y),posX_correct))
filetext = fileread('locatePos.m');
assert(isempty(strfind(filetext, 'find')),'find forbidden')
y =
2
|
2 | Pass |
x = [1 5 8 6 7 6 0];
y = 8
posX_correct = 3;
assert(isequal(locatePos(x,y),posX_correct))
filetext = fileread('locatePos.m');
assert(isempty(strfind(filetext, 'find')),'find forbidden')
y =
8
|
369 Solvers
343 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
354 Solvers
253 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!