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))
|
54232 Solvers
962 Solvers
594 Solvers
201 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!