Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 3 12];
n = [2 6 8];
y_correct = 2;
assert(isequal(completePizzas(x,n),y_correct))
|
2 | Pass |
x = [1 3 7];
n = [2 6 8];
y_correct = 1;
assert(isequal(completePizzas(x,n),y_correct))
|
3 | Pass |
x = [2 3 12];
n = [2 6 8];
y_correct = 3;
assert(isequal(completePizzas(x,n),y_correct))
|
519 Solvers
324 Solvers
486 Solvers
Flip the vector from right to left
2672 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!