This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
What is wrong with the command de2bi?
de2bi is a function in the Communications System Toolbox, which is not a core part of MATLAB, and is not included in Cody.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 5;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
2 | Fail |
x = 1;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
3 | Fail |
x = 2^randi(16);
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
4 | Fail |
x = 17;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
5 | Fail |
x = 18;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
6 | Fail |
x = 61;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
7 | Fail |
x = 6;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
8 | Fail |
x = 2115;
y_correct = false;
assert(isequal(isPernicious(x),y_correct))
|
9 | Fail |
x = 2114;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
10 | Fail |
x = 2017;
y_correct = true;
assert(isequal(isPernicious(x),y_correct))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!