10 lines
167 B
C#
10 lines
167 B
C#
namespace _190._Reverse_Bits;
|
|
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine(new Solution().reverseBits(2));
|
|
}
|
|
}
|