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 |
u = 3;
v= 0.05;
y_correct = 1020;
assert(isequal(your_fcn_name(u,v),y_correct));
|
2 | Pass |
u=30;
v = 0.01;
y_correct = [5100 4800];
assert(isequal(your_fcn_name(u,v),y_correct));
|
3 | Pass |
u=3;
v = 0.03;
y_correct = 1700;
assert(isequal(your_fcn_name(u,v),y_correct));
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
780 Solvers
337 Solvers
329 Solvers
171 Solvers
724 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!