mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:24:07 +00:00
10 lines
223 B
C++
10 lines
223 B
C++
#include "soln.hpp"
|
|
|
|
int main() {
|
|
vector<int> nums{-1,2,3,7,9,11,15};
|
|
vector<int> answer{1,6};
|
|
int target = 10;
|
|
Solution soln;
|
|
cout << "Found two sum correctly? " << soln.test(nums, target,answer) << endl;
|
|
return 0;
|
|
} |