Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 10000;
y_correct = x;
z = simplepartition(x); zL = length(z);
assert(isequal(sum(unique(z)),y_correct) && zL >= ceil(log2(x)/2))
x = 40190;
y_correct = x;
z = simplepartition(x); zL = length(z);
assert(isequal(sum(unique(z)),y_correct) && zL >= ceil(log2(x)/2))
x = 149;
y_correct = x;
z = simplepartition(x); zL = length(z);
assert(isequal(sum(unique(z)),y_correct) && zL >= ceil(log2(x)/2))
|
312 Solvers
Back to basics 18 - justification
176 Solvers
206 Solvers
2539 Solvers
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!