mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:04:06 +00:00
8 lines
218 B
C++
8 lines
218 B
C++
#include <vector>
|
|
using std::vector;
|
|
class Solution
|
|
{
|
|
public:
|
|
void merge(vector<int> &nums1, int m, vector<int> &nums2, int n);
|
|
bool test(vector<int> &nums1, int m, vector<int> &nums2, int n, vector<int> &answer);
|
|
}; |