Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 3;
n = 2;
y_correct = [ 3 0
2 1
1 2
0 3];
assert(isequal(putballs2(m,n),y_correct))
|
2 | Fail |
filetext = fileread('putballs2.m');
assert(isempty(strfind(filetext, 'fopen')));
assert(isempty(strfind(filetext, 'assert')));
assert(isempty(strfind(filetext, 'regexp')));
assert(isempty(strfind(filetext, 'regexprep')));
assert(isempty(strfind(filetext, 'str2num')));
assert(isempty(strfind(filetext, 'if')));
assert(isempty(strfind(filetext, 'persistent')));
assert(isempty(strfind(filetext, 'global')));
assert(isempty(strfind(filetext, 'assignin')));
assert(isempty(strfind(filetext, 'evalin')));
assert(isempty(strfind(filetext, 'char')));
assert(isempty(strfind(filetext, 'interp1')));
assert(isempty(strfind(filetext, 'equal')));
|
3 | Pass |
m = 3;
n = 4;
y_correct = [ 3 0 0 0
2 1 0 0
2 0 1 0
2 0 0 1
1 2 0 0
1 1 1 0
1 1 0 1
1 0 2 0
1 0 1 1
1 0 0 2
0 3 0 0
0 2 1 0
0 2 0 1
0 1 2 0
0 1 1 1
0 1 0 2
0 0 3 0
0 0 2 1
0 0 1 2
0 0 0 3];
assert(isequal(putballs2(m,n),y_correct))
|
4 | Pass |
m = 5;
n = 4;
y_correct = [ 5 0 0 0
4 1 0 0
4 0 1 0
4 0 0 1
3 2 0 0
3 1 1 0
3 1 0 1
3 0 2 0
3 0 1 1
3 0 0 2
2 3 0 0
2 2 1 0
2 2 0 1
2 1 2 0
2 1 1 1
2 1 0 2
2 0 3 0
2 0 2 1
2 0 1 2
2 0 0 3
1 4 0 0
1 3 1 0
1 3 0 1
1 2 2 0
1 2 1 1
1 2 0 2
1 1 3 0
1 1 2 1
1 1 1 2
1 1 0 3
1 0 4 0
1 0 3 1
1 0 2 2
1 0 1 3
1 0 0 4
0 5 0 0
0 4 1 0
0 4 0 1
0 3 2 0
0 3 1 1
0 3 0 2
0 2 3 0
0 2 2 1
0 2 1 2
0 2 0 3
0 1 4 0
0 1 3 1
0 1 2 2
0 1 1 3
0 1 0 4
0 0 5 0
0 0 4 1
0 0 3 2
0 0 2 3
0 0 1 4
0 0 0 5];
assert(isequal(putballs2(m,n),y_correct))
|
962 Solvers
167 Solvers
351 Solvers
267 Solvers
Generate a random matrix A of (1,-1)
210 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!