Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [3 2 4];
y_correct = [1 1 1;2 2 2;3 0 3;0 0 4];
assert(isequal(matInc(a),y_correct))
|
2 | Pass |
%%
a = [0 1 1 2 0 3];
y_correct = [0 1 1 1 0 1;0 0 0 2 0 2;0 0 0 0 0 3];
assert(isequal(matInc(a),y_correct))
|
1327 Solvers
Check to see if a Sudoku Puzzle is Solved
279 Solvers
random picture with random colours
138 Solvers
102 Solvers
Multiples of a Number in a Given Range
214 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!