This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
I did have another solution using mod, but I hadn't thought of num2str. Good job.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [12368933, 12345931, 68221, 533111, 3819999999999];
y_correct = [12345931, 12368933, 3819999999999, 533111, 68221];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [4591023, 37410101, 97516, 888123, 15061789];
y_correct = [15061789, 37410101, 4591023, 888123, 97516];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [1110098, 1110197, 1110296, 1110395, 1110494, 1110593, 1110691];
y_correct = fliplr(x);
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = [324651, 65432114, 1032464, 21465476, 1232165746561, 12321];
y_correct = [1032464, 12321, 1232165746561, 21465476, 324651, 65432114];
assert(isequal(your_fcn_name(x),y_correct))
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
524 Solvers
108 Solvers
Convert a vector into a number
442 Solvers
400 Solvers
Celsius to Fahrenheit converter
280 Solvers