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 |
a = [257.68];
b = [2 1 0 0 1 1 0 1 0 1 1 3];
out = makingChange(a);
assert(isequal(out(:), b(:)))
b =
2 1 0 0 1 1 0 1 0 1 1 3
|
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(:)))
b =
1 0 1 1 1 0 0 0 0 0 0 1
|
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(:)))
b =
100 0 1 1 1 0 0 1 1 2 0 4
|
Check to see if a Sudoku Puzzle is Solved
232 Solvers
263 Solvers
Flip the main diagonal of a matrix
426 Solvers
198 Solvers
424 Solvers