更新 0349.两个数组的交集.md 错别字修正

This commit is contained in:
Eyjan_Huang 2021-08-16 15:43:09 +08:00 committed by GitHub
parent d350a4dd82
commit 46c1084f69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ Python
```python
class Solution:
def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
return list(set(nums1) & set(nums2)) # 两个数组线变成集合,求交集后还原为数组
return list(set(nums1) & set(nums2)) # 两个数组变成集合,求交集后还原为数组
```