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 | Fail |
n = 10; c = 3;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
2 | Fail |
n = 2; c = 1;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
3 | Fail |
n = 10; c = 9;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
4 | Fail |
n = 100; c = 50;
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
5 | Fail |
n = randi([2 20]); c = randi([1 n-1]);
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
6 | Fail |
n = randi([20 100]); c = randi([10 n-1]);
M = createMatrix(n,c);
assert( all(sum(M,1)==c) && all(sum(M,2)==c) && all(diag(M)==0) && ...
islogical(M) && ismatrix(M) && all(size(M)==n) )
|
7264 Solvers
given 3 sides, find area of this triangle
600 Solvers
99 Solvers
Area of an equilateral triangle
1704 Solvers
204 Solvers