Skip to content

Commit 1b46e77

Browse files
authored
Merge pull request careercup#21 from angelsrates/master
4_FixedBug_Partition.py
2 parents f0eb998 + 02527af commit 1b46e77

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Chapter 2/4_Partition.py

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ def partition(ll, x):
1414
ll.tail.next = current
1515
ll.tail = current
1616
current = nextNode
17+
18+
# Error check in case all nodes are less than x
19+
if ll.tail.next is not None:
20+
ll.tail.next = None
1721

1822

1923
ll = LinkedList()

0 commit comments

Comments
 (0)