Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0;
y_correct = 0;
assert(isequal(logic(x),y_correct))
ans =
0
|
2 | Pass |
x = 1;
y_correct = 1;
assert(isequal(logic(x),y_correct))
ans =
1
|
3 | Pass |
x = 2;
y_correct = 8;
assert(isequal(logic(x),y_correct))
ans =
8
|
4 | Pass |
x = 3;
y_correct = 39;
assert(isequal(logic(x),y_correct))
ans =
39
|
5 | Pass |
x = 7;
y_correct = 7651;
assert(isequal(logic(x),y_correct))
ans =
7651
|
6 | Pass |
x = 12;
y_correct = 3188640;
assert(isequal(logic(x),y_correct))
ans =
3188640
|
Return the 3n+1 sequence for n
6167 Solvers
238 Solvers
2099 Solvers
135 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!