Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3;4 5 6;7 8 9];
thresh=5;
y_correct = [3 6 8 9];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
out =
[]
out =
3
out =
3 6
out =
3 6 8
out =
3 6 8 9
|
2 | Pass |
x = 1:2:100;
thresh=90;
y_correct = [46 47 48 49 50];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
out =
[]
out =
46
out =
46 47
out =
46 47 48
out =
46 47 48 49
out =
46 47 48 49 50
|
3 | Pass |
x = 1:2:100';
thresh=90;
y_correct = [46 47 48 49 50];
filetext = fileread('MatrixIndices.m');
assert(isequal(MatrixIndices(x, thresh),y_correct))
assert(isempty(strfind(filetext, 'find')))
out =
[]
out =
46
out =
46 47
out =
46 47 48
out =
46 47 48 49
out =
46 47 48 49 50
|
Determine Whether an array is empty
561 Solvers
Longest run of consecutive numbers
197 Solvers
221 Solvers
Who has power to do everything in this world?
256 Solvers
Deleting an element in a matrix
242 Solvers