7 lines
176 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
vector<int> productExceptSelf(vector<int>& nums);
bool test(vector<int>& nums, vector<int>& answer);
};