Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
mat=[1 1];
ok = 1;
assert(isequal(FillWithOnes(n,mat),ok))
|
2 | Pass |
n = 2;
mat=[1 2; 2 1];
ok = [0 1; 1 0];
assert(isequal(FillWithOnes(n,mat),ok))
|
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))
|
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))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35546 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
594 Solvers
Make a run-length companion vector
512 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!