Skip to content

Commit 0dc39c1

Browse files
committedSep 18, 2018
Update solution 021 [Python3]
1 parent 2fc03ca commit 0dc39c1

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed
 

‎solution/021.Merge Two Sorted Lists/Solution.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
#Definition for singly-linked list.
2-
class ListNode:
3-
def __init__(self, x):
4-
self.val = x
5-
self.next = None
6-
1+
# Definition for singly-linked list.
2+
# class ListNode:
3+
# def __init__(self, x):
4+
# self.val = x
5+
# self.next = None
76

87
class Solution:
98
def mergeTwoLists(self, l1, l2):

0 commit comments

Comments
 (0)