摘要: 自己写的: from typing import List # 导入List类型,用于函数参数和返回类型的注解 class Solution: def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]: # 初始化 阅读全文
posted @ 2024-04-11 14:28 Junior_bond 阅读(10) 评论(0) 推荐(0)