-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest4.cpp
More file actions
89 lines (62 loc) · 1.6 KB
/
Copy pathtest4.cpp
File metadata and controls
89 lines (62 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include<bits/stdc++.h>
using namespace std;
string multiplyStrings(string , string );
int main() {
int t;
cin>>t;
while(t--)
{
string a;
string b;
cin>>a>>b;
cout<<multiplyStrings(a,b)<<endl;
}
}// } Driver Code Ends
/*You are required to complete below function */
string multiplyStrings(string num1, string num2) {
//Your code here
int sign = 1;
if (num1[0] == '-') {
sign = sign * (-1);
num1.erase(num1.begin());
}
if (num2[0] == '-') {
sign = sign * (-1);
num2.erase(num2.begin());
}
int n1 = num1.size();
int n2 = num2.size();
if (n1 == 0 || n2 == 0)
return "0";
vector<int> result(n1 + n2, 0);
int i_n1 = 0;
int i_n2 = 0;
for (int i=n1-1; i>=0; i--)
{
int carry = 0;
int n1 = num1[i] - '0';
i_n2 = 0;
for (int j=n2-1; j>=0; j--)
{
int n2 = num2[j] - '0';
int sum = n1*n2 + result[i_n1 + i_n2] + carry;
carry = sum/10;
result[i_n1 + i_n2] = sum % 10;
i_n2++;
}
if (carry > 0)
result[i_n1 + i_n2] += carry;
i_n1++;
}
int i = result.size() - 1;
while (i>=0 && result[i] == 0)
i--;
if (i == -1)
return "0";
string s = "";
while (i >= 0)
s += std::to_string(result[i--]);
if (sign == -1)
s.insert(s.begin(), '-');
return s;
}