Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 5;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
2 | Pass |
x = 1;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
3 | Pass |
x = 2^randi(16);
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
4 | Pass |
x = 17;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
5 | Pass |
x = 18;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
6 | Pass |
x = 61;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
7 | Pass |
x = 6;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
8 | Pass |
x = 2115;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
9 | Pass |
x = 2114;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
10 | Pass |
x = 2017;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
Find the sum of all the numbers of the input vector
31951 Solvers
345 Solvers
Cell Counting: How Many Draws?
581 Solvers
07 - Common functions and indexing 6
348 Solvers
251 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!