mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 09:34:07 +00:00
8 lines
170 B
C++
8 lines
170 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
string multiply(string num1, string num2);
|
|
bool test(string num1, string num2, string answer);
|
|
}; |