Untitled

 avatar
unknown
plain_text
3 years ago
164 B
8
Indexable
class Solution(object):
    def mergeTwoLists(self, l1, l2):
        """
        :type l1: ListNode
        :type l2: ListNode
        :rtype: ListNode
        """
Editor is loading...