mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 08:54:07 +00:00
8 lines
195 B
C++
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);
|
|
}; |