摘要: class Solution(object): def mergeTwoLists(self, list1, list2): if not list1: return list2 if not list2: return list1 result = None while list1 or list 阅读全文
posted @ 2024-01-04 20:29 Junior_bond 阅读(11) 评论(0) 推荐(0)