Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [257.68];
b = [2 1 0 0 1 1 0 1 0 1 1 3];
out = makingChange(a);
assert(isequal(out(:), b(:)))
|
2 | Pass |
%%
a = [135.01];
b = [1 0 1 1 1 0 0 0 0 0 0 1];
out = makingChange(a);
assert(isequal(out(:), b(:)))
|
3 | Pass |
%%
a = [10035.99];
b = [100 0 1 1 1 0 0 1 1 2 0 4];
out = makingChange(a);
assert(isequal(out(:), b(:)))
|
Arrange Vector in descending order
4076 Solvers
Determine the number of odd integers in a vector
435 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
390 Solvers
Find the average of a random sequance
334 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!