This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 3 5 4 2];
y = 2
posX_correct = 5;
assert(isequal(findPosition(x,y),posX_correct))
y =
2
z =
1 2 3 4 5
posX =
5
|
2 | Pass |
%%
x = [1 5 8 6 7 6 0];
y = 8
posX_correct = 3;
assert(isequal(findPosition(x,y),posX_correct))
y =
8
z =
1 2 3 4 5 6 7
posX =
3
|
Find common elements in matrix rows
812 Solvers
3655 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
Output any real number that is neither positive nor negative
252 Solvers
302 Solvers