mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 08:54:07 +00:00
10 lines
202 B
C++
10 lines
202 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
vector<int> nums{1, 2, 3, 4};
|
|
vector<int> answer{24, 12, 8, 6};
|
|
Solution soln;
|
|
cout << "Found products correctly? " << soln.test(nums, answer) << endl;
|
|
return 0;
|
|
} |