mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 15:34:06 +00:00
14 lines
354 B
C++
14 lines
354 B
C++
#include "soln.hpp"
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
vector<int> nums1 = vector<int>{1, 2, 3, 0, 0, 0};
|
|
vector<int> nums2 = vector<int>{2, 5, 6};
|
|
vector<int> answer = vector<int>{1, 2, 2, 3, 5, 6};
|
|
Solution soln;
|
|
cout << "Merged correctly? " << soln.test(nums1, 3, nums2, 3, answer) << endl;
|
|
return 0;
|
|
} |