mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 10:34:07 +00:00
9 lines
200 B
C++
9 lines
200 B
C++
#include "soln.hpp"
|
|
|
|
int main()
|
|
{
|
|
string num1 = "123", num2 = "456", answer = "56088";
|
|
Solution soln;
|
|
cout << "Multiplied strings correctly? " << soln.test(num1, num2, answer) << endl;
|
|
return 0;
|
|
} |