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 |
assert(bit_reverse(1,1) == 1)
|
2 | Pass |
assert(bit_reverse(4,3) == 1)
|
3 | Pass |
assert(bit_reverse(2,3) == 2)
|
4 | Pass |
assert(bit_reverse(6,3) == 3)
|
5 | Pass |
assert(bit_reverse(5,3) == 5)
|
6 | Pass |
assert(bit_reverse(7,3) == 7)
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!