Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
mat=[1 1];
ok = 1;
assert(isequal(FillWithOnes(n,mat),ok))
ans =
[]
|
2 | Pass |
n = 2;
mat=[1 2; 2 1];
ok = [0 1; 1 0];
assert(isequal(FillWithOnes(n,mat),ok))
ans =
[]
|
3 | Pass |
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))
ans =
[]
|
4 | Pass |
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))
ans =
[]
|
329 Solvers
231 Solvers
Implement simple rotation cypher
942 Solvers
173 Solvers
420 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!