Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = sqrt(3)/4;
tolerance = 1e-12;
assert(abs(equilateral_area(x)-y_correct)<tolerance)
|
2 | Pass |
%%
x = 2;
y_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(equilateral_area(x)-y_correct)<tolerance)
|
3 | Pass |
%%
x = 3;
y_correct = sqrt(3)*9/4;
tolerance =1e-12;
assert(abs(equilateral_area(x)-y_correct)<tolerance)
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
1051 Solvers
546 Solvers
480 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!