Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
0
|
2 | Pass |
x = 2;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
1
|
3 | Pass |
x = 11;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
0
|
4 | Pass |
x = 22;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
1
|
5 | Pass |
x = 13;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
0
|
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))
y =
1×7 logical array
1 0 1 1 1 0 0
|
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))
y =
3×3 logical array
0 1 1
0 1 1
1 0 0
|
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')
|
5833 Solvers
Maximum running product for a string of numbers
1112 Solvers
Deleting an element in a matrix
325 Solvers
234 Solvers
708 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!