Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 5;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
2 | Pass |
x = 1;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
0
|
3 | Pass |
x = 2^randi(16);
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
0
|
4 | Pass |
x = 17;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
5 | Pass |
x = 18;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
6 | Pass |
x = 61;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
7 | Pass |
x = 6;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
8 | Pass |
x = 2115;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
0
|
9 | Pass |
x = 2114;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
10 | Pass |
x = 2017;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
ans =
logical
1
|
584 Solvers
Relative ratio of "1" in binary number
392 Solvers
583 Solvers
1141 Solvers
Solve a System of Linear Equations
3454 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!