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