Skip to content

Commit 766721c

Browse files
committed
Create README - LeetHub
source:ae8e890ca3200ba5f80fb189149be97e3cc73f1d
1 parent 358eb9b commit 766721c

File tree

1 file changed

+20
-0
lines changed
  • 공예영/6주차/0043-multiply-strings

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<h2><a href="https://leetcode.com/problems/multiply-strings">43. Multiply Strings</a></h2><h3>Medium</h3><hr><p>Given two non-negative integers <code>num1</code> and <code>num2</code> represented as strings, return the product of <code>num1</code> and <code>num2</code>, also represented as a string.</p>
2+
3+
<p><strong>Note:</strong>&nbsp;You must not use any built-in BigInteger library or convert the inputs to integer directly.</p>
4+
5+
<p>&nbsp;</p>
6+
<p><strong class="example">Example 1:</strong></p>
7+
<pre><strong>Input:</strong> num1 = "2", num2 = "3"
8+
<strong>Output:</strong> "6"
9+
</pre><p><strong class="example">Example 2:</strong></p>
10+
<pre><strong>Input:</strong> num1 = "123", num2 = "456"
11+
<strong>Output:</strong> "56088"
12+
</pre>
13+
<p>&nbsp;</p>
14+
<p><strong>Constraints:</strong></p>
15+
16+
<ul>
17+
<li><code>1 &lt;= num1.length, num2.length &lt;= 200</code></li>
18+
<li><code>num1</code> and <code>num2</code> consist of digits only.</li>
19+
<li>Both <code>num1</code> and <code>num2</code>&nbsp;do not contain any leading zero, except the number <code>0</code> itself.</li>
20+
</ul>

0 commit comments

Comments
 (0)