Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 3;
n = 2;
y_correct = [ 1 1 1
1 1 2
1 2 2
2 2 2];
assert(isequal(putintoballs(m,n),y_correct))
|
2 | Pass |
filetext = fileread('putintoballs.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 = [ 1 1 1
1 1 2
1 1 3
1 1 4
1 2 2
1 2 3
1 2 4
1 3 3
1 3 4
1 4 4
2 2 2
2 2 3
2 2 4
2 3 3
2 3 4
2 4 4
3 3 3
3 3 4
3 4 4
4 4 4];
assert(isequal(putintoballs(m,n),y_correct))
|
4 | Pass |
m = 5;
n = 4;
y_correct = [ 1 1 1 1 1
1 1 1 1 2
1 1 1 1 3
1 1 1 1 4
1 1 1 2 2
1 1 1 2 3
1 1 1 2 4
1 1 1 3 3
1 1 1 3 4
1 1 1 4 4
1 1 2 2 2
1 1 2 2 3
1 1 2 2 4
1 1 2 3 3
1 1 2 3 4
1 1 2 4 4
1 1 3 3 3
1 1 3 3 4
1 1 3 4 4
1 1 4 4 4
1 2 2 2 2
1 2 2 2 3
1 2 2 2 4
1 2 2 3 3
1 2 2 3 4
1 2 2 4 4
1 2 3 3 3
1 2 3 3 4
1 2 3 4 4
1 2 4 4 4
1 3 3 3 3
1 3 3 3 4
1 3 3 4 4
1 3 4 4 4
1 4 4 4 4
2 2 2 2 2
2 2 2 2 3
2 2 2 2 4
2 2 2 3 3
2 2 2 3 4
2 2 2 4 4
2 2 3 3 3
2 2 3 3 4
2 2 3 4 4
2 2 4 4 4
2 3 3 3 3
2 3 3 3 4
2 3 3 4 4
2 3 4 4 4
2 4 4 4 4
3 3 3 3 3
3 3 3 3 4
3 3 3 4 4
3 3 4 4 4
3 4 4 4 4
4 4 4 4 4];
assert(isequal(putintoballs(m,n),y_correct))
|
253 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
351 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
133 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!