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
x_y =
1×5 logical array
0 0 0 0 1
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
x_y =
1×7 logical array
0 0 1 0 0 0 0
posX =
3
|
Given two strings, find the maximum overlap
461 Solvers
Omit columns averages from a matrix
527 Solvers
299 Solvers
5467 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!