This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 4 5];
pos = [0 2]
y_correct = 4;
assert(isequal(your_fcn_name(x,pos),y_correct))
2
pos =
0 2
ans =
2
|
2 | Pass |
x = [1 2 3 4 5; 6 7 8 9 0];
pos = [1 3];
y_correct = 9
assert(isequal(your_fcn_name(x,pos),y_correct))
y_correct =
9
|
550 Solvers
Implement simple rotation cypher
805 Solvers
116 Solvers
Number of digits in an integer
271 Solvers
Pernicious Anniversary Problem
671 Solvers