This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
y_correct = [2];
assert(isequal(unHanoingProblem(n),y_correct))
|
2 | Pass |
n = 3;
y_correct = [1 3 3 7];
assert(isequal(unHanoingProblem(3),[2 3 1 2 3 1 2]))
|
3 | Pass |
n = 6;
y_correct = [2 3 1 2 3 1 2];
assert(isequal(unHanoingProblem(n),[3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1 3 2 1]))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
29478 Solvers
Number of 1s in the Binary Representation of a Number
319 Solvers
Arrange Vector in descending order
1819 Solvers
Back to basics 11 - Max Integer
611 Solvers
142 Solvers