mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
Given three integer arrays <code>nums1</code>, <code>nums2</code>, and <code>nums3</code>, return <em>a <strong>distinct</strong> array containing all the values that are present in <strong>at least two</strong> out of the three arrays. You may return the values in <strong>any</strong> order</em>.
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> nums1 = [1,1,3,2], nums2 = [2,3], nums3 = [3]
|
|
<strong>Output:</strong> [3,2]
|
|
<strong>Explanation:</strong> The values that are present in at least two arrays are:
|
|
- 3, in all three arrays.
|
|
- 2, in nums1 and nums2.
|
|
</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> nums1 = [3,1], nums2 = [2,3], nums3 = [1,2]
|
|
<strong>Output:</strong> [2,3,1]
|
|
<strong>Explanation:</strong> The values that are present in at least two arrays are:
|
|
- 2, in nums2 and nums3.
|
|
- 3, in nums1 and nums2.
|
|
- 1, in nums1 and nums3.
|
|
</pre>
|
|
|
|
<p><strong>Example 3:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> nums1 = [1,2,2], nums2 = [4,3,3], nums3 = [5]
|
|
<strong>Output:</strong> []
|
|
<strong>Explanation:</strong> No value is present in at least two arrays.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= nums1.length, nums2.length, nums3.length <= 100</code></li>
|
|
<li><code>1 <= nums1[i], nums2[j], nums3[k] <= 100</code></li>
|
|
</ul>
|