Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 2;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 11;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 22;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Pass |
x = 13;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
|
6 | Pass |
x = [56 117 8 24 44 33 15];
y_correct = [true false true true true false false];
assert(isequal(your_fcn_name(x),y_correct))
|
7 | Pass |
x = [99 558 100; 101 6 4; 44 31 39];
y_correct = [false true true; false true true; true false false];
assert(isequal(your_fcn_name(x),y_correct))
|
8 | Pass |
filetext = fileread('your_fcn_name.m');
assert(isempty(strfind(filetext, 'for')),'for command is forbidden')
assert(isempty(strfind(filetext, 'repelem')),'repelem command is forbidden')
assert(isempty(strfind(filetext, 'discretize')),'discretize command is forbidden')
assert(isempty(strfind(filetext, 'while')),'while command is forbidden')
assert(isempty(strfind(filetext, 'if')),'if command is forbidden')
|
2486 Solvers
2501 Solvers
Vectorize the digits of an Integer
269 Solvers
521 Solvers
201 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!