LeetCode 筆記 - 350. Intersection of Two Arrays II
題目在此 350. Intersection of Two Arrays II
請找出兩個數列之間重複的元素
解題思維
如果沒解過 349. Intersection of Two Arrays,可以先看一下這題
再使用 Two Pointers 大法慢慢往下掃之前,記得需要先 Sorting
這個方法就可以在 O(N) 內把問題空間掃描一下
完成!
程式碼
1 | class Solution: |
題目在此 350. Intersection of Two Arrays II
請找出兩個數列之間重複的元素
如果沒解過 349. Intersection of Two Arrays,可以先看一下這題
再使用 Two Pointers 大法慢慢往下掃之前,記得需要先 Sorting
這個方法就可以在 O(N) 內把問題空間掃描一下
完成!
1 | class Solution: |