Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 10;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
y =
1 2 5
y =
logical
0
|
2 | Pass |
x = 28;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
y =
1 2 4 7 14
y =
logical
1
|
3 | Pass |
x = 8128;
y_correct = true;
assert(isequal(your_fcn_name(x),y_correct))
y =
1 2 4 8 16 32 64 127 254 508 1016 2032 4064
y =
logical
1
|
4 | Pass |
x = 564;
y_correct = false;
assert(isequal(your_fcn_name(x),y_correct))
y =
1 2 3 4 6 12 47 94 141 188 282
y =
logical
0
|
Return the 3n+1 sequence for n
6169 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
6369 Solvers
351 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!