Loading

摘要: 删除重复的电子邮箱 delete from Person where id not in (select id from (select min(id) as id from Person group by email) as temp) 好友申请 II :谁有最多的好友 select id,cou 阅读全文
posted @ 2024-09-11 10:14 Duancf 阅读(26) 评论(0) 推荐(0)
摘要: class Solution: def kSmallestPairs(self, nums1: List[int], nums2: List[int], k: int) -> List[List[int]]: if not nums1 or not nums2: return [] heap = [ 阅读全文
posted @ 2024-09-11 09:20 Duancf 阅读(22) 评论(0) 推荐(0)