This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
out = [3 4];
vec = [11 22 33 44];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
ans =
3 4
|
2 | Pass |
%%
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
ans =
1 2
|
225 Solvers
281 Solvers
Output any real number that is neither positive nor negative
250 Solvers
Create an n-by-n null matrix and fill with ones certain positions
140 Solvers
366 Solvers