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