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))
|
2 | Pass |
%%
out = [1 2];
vec = [33 44 11 22];
thresh = 25;
assert(isequal(findIndices(vec, thresh),out))
|
1582 Solvers
Back to basics 19 - character types
189 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
1567 Solvers
Basics: 'Find the eigenvalues of given matrix
257 Solvers
502 Solvers