Skip to content

Commit 45730c3

Browse files
committed
Update: 2215 - Find the Difference of Two Arrays | Space complexity
1 parent 7224082 commit 45730c3

4 files changed

+10
-8
lines changed

cpp/2215-find-the-difference-of-two-arrays.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Time Complexity: O(n), where n is the maximum length between nums1 and nums2.
2-
// Space Complexity: O(m), where m is the length of the resulting difference vectors.
1+
// Time Complexity: O(m + n), we check each element of nums1Set and nums2Set
2+
// Space Complexity: O(m + n), where m and n are length sets in worst case.
33

44
class Solution
55
{

javascript/2215-find-the-difference-of-two-arrays.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* @return {number[][]}
55
*/
66

7-
// Time Complexity: O(n), where n is the maximum length between nums1 and nums2.
8-
// Space Complexity: O(m), where m is the length of the resulting difference lists.
7+
// Time Complexity: O(m + n), we check each element of nums1Set and nums2Set
8+
// Space Complexity: O(m + n), where m and n are length sets in worst case.
99

1010
var findDifference = function (nums1, nums2) {
1111
const nums1Set = new Set(nums1);
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Time Complexity: O(n), where n is the maximum length between nums1 and nums2.
2-
# Space Complexity: O(m), where m is the length of the resulting difference lists.
1+
# Time Complexity: O(m + n), we check each element of nums1Set and nums2Set
2+
# Space Complexity: O(m + n), where m and n are length sets in worst case.
33

44
from typing import List # ignore this, just for typing
55

@@ -8,6 +8,8 @@ class Solution:
88
def findDifference(self, nums1: List[int], nums2: List[int]) -> List[List[int]]:
99
nums1_set = set(nums1)
1010
nums2_set = set(nums2)
11+
1112
lst1 = [num for num in nums1_set if num not in nums2_set]
1213
lst2 = [num for num in nums2_set if num not in nums1_set]
14+
1315
return [lst1, lst2]

typescript/2215-find-the-difference-of-two-arrays.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Time Complexity: O(n), where n is the maximum length between nums1 and nums2.
2-
// Space Complexity: O(m), where m is the length of the resulting difference lists.
1+
// Time Complexity: O(m + n), we check each element of nums1Set and nums2Set
2+
// Space Complexity: O(m + n), where m and n are length sets in worst case.
33

44
function findDifference(nums1: number[], nums2: number[]): number[][] {
55
const nums1Set: Set<number> = new Set(nums1);

0 commit comments

Comments
 (0)