Skip to content

Commit b144b76

Browse files
authored
[Array] Refactor solution to Intersection of Two Arrays II
1 parent 2adc4c2 commit b144b76

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

Array/IntersectionTwoArraysII.swift

+4-8
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,16 @@
1010

1111
class IntersectionTwoArraysII {
1212
func intersect(_ nums1: [Int], _ nums2: [Int]) -> [Int] {
13-
var frequencies = Dictionary(nums1.map { ($0, 1) } , uniquingKeysWith: +)
13+
var numsFreq = Dictionary(nums1.map { ($0, 1) }, uniquingKeysWith: +)
1414
var res = [Int]()
1515

1616
for num in nums2 {
17-
guard let frequent = frequencies[num] else {
18-
continue
19-
}
20-
21-
if frequent > 0 {
22-
frequencies[num]! = frequent - 1
17+
if let freq = numsFreq[num], freq > 0 {
2318
res.append(num)
19+
numsFreq[num] = freq - 1
2420
}
2521
}
2622

2723
return res
2824
}
29-
}
25+
}

0 commit comments

Comments
 (0)