Skip to content

Commit da10044

Browse files
add 43
1 parent a83cebf commit da10044

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ LeetCode
4343
|0039|[Combination Sum](https://leetcode.com/problems/combination-sum/) | c | [c++](./src/0039-Combination-Sum/0039.cpp) |[python](./src/0039-Combination-Sum/0039.py)|||Medium|
4444
|0040|[Combination Sum II](https://leetcode.com/problems/combination-sum-ii/) | c | [c++](./src/0040-Combination-Sum-II/0040.cpp) |[python](./src/0040-Combination-Sum-II/0040.py)|||Medium|
4545
|0041|[First Missing Positive](https://leetcode.com/problems/first-missing-positive/) | c | [c++](./src/0041-First-Missing-Positive/0041.cpp) |[python](./src/0041-First-Missing-Positive/0041.py)|||Hard|
46+
|0043|[Multiply Strings](https://leetcode.com/problems/multiply-strings/) | c | [c++](./src/0043-Multiply-Strings/0043.cpp) |[python](./src/0043-Multiply-Strings/0043.py)|||Medium|
4647
|0044|[Wildcard Matching](https://leetcode.com/problems/wildcard-matching/) | c | [c++](./src/0044-Wildcard-Matching/0044.cpp) |[python](./src/0044-Wildcard-Matching/0044.py)|||Hard|
4748
|0045|[Jump Game II](https://leetcode.com/problems/jump-game-ii/) | c | [c++](./src/0045-Jump-Game-II/0045.cpp) |[python](./src/0045-Jump-Game-II/0045.py)|||Hard|
4849
|0046|[Permutations](https://leetcode.com/problems/permutations/) | c | [c++](./src/0046-Permutations/0046.cpp) |[python](./src/0046-Permutations/0046.py)|||Medium|

src/0043-Multiply-Strings/0043.cpp

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#include <string>
2+
using namespace std;
3+
4+
static int x = []() {std::ios::sync_with_stdio(false); cin.tie(0); return 0; }();
5+
class Solution
6+
{
7+
public:
8+
string multiply(string num1, string num2)
9+
{
10+
int m = num1.size(), n = num2.size();
11+
string res(m + n, '0');
12+
for (int i = m - 1; i >= 0; i--)
13+
{
14+
for (int j = n - 1; j >= 0; j--)
15+
{
16+
int sum = (num1[i] - '0') * (num2[j] - '0') + (ans[i + j + 1] - '0');
17+
res[i + j + 1] = sum % 10 + '0';
18+
res[i + j] += sum / 10;
19+
}
20+
}
21+
for (int i = 0; i < m + n; i++)
22+
{
23+
if (res[i] != '0') return res.substr(i);
24+
}
25+
return "0";
26+
}
27+
};

src/0043-Multiply-Strings/0043.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class Solution:
2+
def multiply(self, num1, num2):
3+
"""
4+
:type num1: str
5+
:type num2: str
6+
:rtype: str
7+
"""
8+
num1_len, num2_len = len(num1), len(num2)
9+
res = ['0'] * (num1_len + num2_len)
10+
for i in range(num2_len-1, -1, -1):
11+
for j in range(num1_len-1, -1, -1):
12+
tmp = int(num1[j]) * int(num2[i]) + int(res[i + j + 1])
13+
res[i + j + 1] = str(tmp%10)
14+
res[i + j] = str(int(res[i+j]) + tmp // 10)
15+
16+
for i in range(num1_len + num2_len):
17+
if res[i] != '0':
18+
return ''.join(res[i:])
19+
return '0'

0 commit comments

Comments
 (0)