Kaushik Narayan R 692280761f day 10: 190-reverse-bits
so far was on easy, moving to medium difficulty
2023-10-07 10:31:48 -07:00

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);
};