8 lines
144 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
vector<int> countBits(int n);
bool test(int n, vector<int> &answer);
};