mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:14:07 +00:00
7 lines
176 B
C++
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);
|
|
}; |