mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:44:07 +00:00
9 lines
195 B
C++
9 lines
195 B
C++
#include "soln.hpp"
|
|
|
|
int main() {
|
|
vector<int> nums = {1,2,3,4,4,3,1};
|
|
int answer = 2;
|
|
Solution soln;
|
|
cout << "Found single number correctly? " << soln.test(nums, answer) << endl;
|
|
return 0;
|
|
} |