Skip to content

Commit 35548f1

Browse files
authored
Rename Solutions.py to Solution.py
1 parent 83878d0 commit 35548f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithms/Easy/206_ReverseLinkedList/Solutions.py renamed to Algorithms/Easy/206_ReverseLinkedList/Solution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:
88
prev = head
99
head = next
1010

11-
return prev
11+
return prev

0 commit comments

Comments
 (0)