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 numeric mean of the prime numbers in a matrix.
6782 Solvers
Remove all the words that end with "ain"
1292 Solvers
Split a string into chunks of specified length
475 Solvers
find the maximum element of the matrix
348 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!