#include using namespace std; class Solution { public: vector twoSum(vector &numbers, int target); bool test(vector &numbers, int target, vector &answer); };