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
b =
0 0 0 0 1
|
2 | Pass |
%%
x = [1 5 8 6 7 6 0];
y = 8
posX_correct = 3;
assert(isequal(findPosition(x,y),posX_correct))
y =
8
b =
0 0 1 0 0 0 0
|
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Rotate and display numbered tile
239 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Determine the number of odd integers in a vector
435 Solvers
Sum the numbers on the main diagonal
453 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!