We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83878d0 commit 35548f1Copy full SHA for 35548f1
Algorithms/Easy/206_ReverseLinkedList/Solutions.py renamed to Algorithms/Easy/206_ReverseLinkedList/Solution.py
@@ -8,4 +8,4 @@ def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:
8
prev = head
9
head = next
10
11
- return prev
+ return prev
0 commit comments