328. Odd Even Linked List

题目来源:   自我感觉难度/真实难度:   题意:   分析:     自己的代码: class Solution: def oddEvenList(self, head: ListNode) -> ListNode: if head is None or head.next is None: return head odd,eve
相关文章
相关标签/搜索