Interview Guides
Given an integer n representing an 8-bit unsigned value (0 to 255), return the integer produced by reversing its 8 bits. For example, if the binary form is 00000101, the reversed result is 10100000. The function should return the reversed value as an integer.
0 <= n <= 255