mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:04:06 +00:00
10 lines
188 B
C++
10 lines
188 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
int n = 7;
|
|
vector<int> answer{0, 1, 1, 2, 1, 2, 2, 3};
|
|
Solution soln;
|
|
cout << "Counted bits correctly? " << soln.test(n, answer) << endl;
|
|
return 0;
|
|
} |