mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 07:34:06 +00:00
12 lines
226 B
C++
12 lines
226 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
Solution soln;
|
|
vector<int> arr{1, 2, 3, 4, 5, 6};
|
|
int k = 10;
|
|
bool answer = false;
|
|
cout << "Checked pairings correctly? " << endl;
|
|
cout << soln.test(arr, k, answer) << endl;
|
|
return 0;
|
|
} |