mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 11:44:06 +00:00
9 lines
159 B
C++
9 lines
159 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
int singleNumber(vector<int>& nums);
|
|
bool test(vector<int>& nums, int answer);
|
|
}; |