8 lines
195 B
C++

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