Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
mat=[1 1];
ok = 1;
assert(isequal(FillWithOnes(n,mat),ok))
|
2 | Fail |
n = 2;
mat=[1 2; 2 1];
ok = [0 1; 1 0];
assert(isequal(FillWithOnes(n,mat),ok))
|
3 | Fail |
n=3;
mat=[1 3; 3 2; 3 3];
ok = [0 0 1; 0 0 0; 0 1 1];
assert(isequal(FillWithOnes(n,mat),ok))
|
4 | Fail |
n=4;
mat=[1 3; 3 2; 3 3];
ok = [0 0 1 0; 0 0 0 0; 0 1 1 0; 0 0 0 0];
assert(isequal(FillWithOnes(n,mat),ok))
|
1092 Solvers
280 Solvers
Fix the last element of a cell array
343 Solvers
2334 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!