Skip to content

Commit 5ad6078

Browse files
authored
Update readme.md
1 parent f80e835 commit 5ad6078

File tree

1 file changed

+2
-6
lines changed
  • src/main/java/g2201_2300/s2248_intersection_of_multiple_arrays

1 file changed

+2
-6
lines changed

src/main/java/g2201_2300/s2248_intersection_of_multiple_arrays/readme.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ Given a 2D integer array `nums` where `nums[i]` is a non-empty array of **distin
1212

1313
**Explanation:**
1414

15-
The only integers present in each of nums[0] = [**3**,1,2,**4**,5], nums[1] = [1,2,**3**,**4**], and
16-
17-
nums[2] = [**3**,**4**,5,6] are 3 and 4, so we return [3,4].
15+
The only integers present in each of nums[0] = [**3**,1,2,**4**,5], nums[1] = [1,2,**3**,**4**], and nums[2] = [**3**,**4**,5,6] are 3 and 4, so we return [3,4].
1816

1917
**Example 2:**
2018

@@ -24,9 +22,7 @@ nums[2] = [**3**,**4**,5,6] are 3 and 4, so we return [3,4].
2422

2523
**Explanation:**
2624

27-
There does not exist any integer present both in nums[0] and nums[1], so we return an
28-
29-
empty list [].
25+
There does not exist any integer present both in nums[0] and nums[1], so we return an empty list [].
3026

3127
**Constraints:**
3228

0 commit comments

Comments
 (0)