Skip to content

Commit aafb978

Browse files
committed
Create README - LeetHub
1 parent 29a7722 commit aafb978

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<h2><a href="https://leetcode.com/problems/intersection-of-two-arrays-ii">350. Intersection of Two Arrays II</a></h2><h3>Easy</h3><hr><p>Given two integer arrays <code>nums1</code> and <code>nums2</code>, return <em>an array of their intersection</em>. Each element in the result must appear as many times as it shows in both arrays and you may return the result in <strong>any order</strong>.</p>
2+
3+
<p>&nbsp;</p>
4+
<p><strong class="example">Example 1:</strong></p>
5+
6+
<pre>
7+
<strong>Input:</strong> nums1 = [1,2,2,1], nums2 = [2,2]
8+
<strong>Output:</strong> [2,2]
9+
</pre>
10+
11+
<p><strong class="example">Example 2:</strong></p>
12+
13+
<pre>
14+
<strong>Input:</strong> nums1 = [4,9,5], nums2 = [9,4,9,8,4]
15+
<strong>Output:</strong> [4,9]
16+
<strong>Explanation:</strong> [9,4] is also accepted.
17+
</pre>
18+
19+
<p>&nbsp;</p>
20+
<p><strong>Constraints:</strong></p>
21+
22+
<ul>
23+
<li><code>1 &lt;= nums1.length, nums2.length &lt;= 1000</code></li>
24+
<li><code>0 &lt;= nums1[i], nums2[i] &lt;= 1000</code></li>
25+
</ul>
26+
27+
<p>&nbsp;</p>
28+
<p><strong>Follow up:</strong></p>
29+
30+
<ul>
31+
<li>What if the given array is already sorted? How would you optimize your algorithm?</li>
32+
<li>What if <code>nums1</code>&#39;s size is small compared to <code>nums2</code>&#39;s size? Which algorithm is better?</li>
33+
<li>What if elements of <code>nums2</code> are stored on disk, and the memory is limited such that you cannot load all elements into the memory at once?</li>
34+
</ul>

0 commit comments

Comments
 (0)