Problem 21. Return the 3n+1 sequence for n
Solution Stats
Problem Comments
-
6 Comments
Hep, Cody Team, could you remove my solution please?
Thank you!
nice one but consumes size dunno how to reduce it
a bit tricky but nice
I like this problem, because I learnt about the Collatz sequence story. Very interessting.
function c = collatz(n)
c(1) = n;
while (1>0)
if (n == 1)
c(end+1) = n;
break
elseif (mod(n,2) == 0)
c(end+1) = n;
n = n/2;
collatz(n);
else
c(end+1) = n;
n = 3*n + 1;
collatz(n);
end
end
c(1) = [];
end
This solution is correct as I ran the Test Cases myself. But the compiler timed out. What should I do ?
Solution Comments
Show commentsProblem Recent Solvers8270
Suggested Problems
-
Select every other element of a vector
32967 Solvers
-
Find the numeric mean of the prime numbers in a matrix.
8909 Solvers
-
Side of an equilateral triangle
6141 Solvers
-
Rounding off numbers to n decimals
4504 Solvers
-
Solve a System of Linear Equations
11944 Solvers
More from this Author96
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!