mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:34:07 +00:00
10 lines
151 B
C++
10 lines
151 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
class Solution
|
|
{
|
|
public:
|
|
uint32_t reverseBits(uint32_t n);
|
|
bool test(uint32_t n, uint32_t answer);
|
|
}; |