Skip to content

Commit f608de3

Browse files
Update Program to reverse Linked List( Recursive solution).py
ogical issue in the printLinkedList function. When the function prints the data of each node in the linked list, it does not print a newline character after each node, so the output appears as a single line instead of multiple lines.
1 parent 263bd95 commit f608de3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Program to reverse Linked List( Recursive solution).py

+1-3
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,10 @@ def takeInput():
4646

4747

4848
def printLinkedList(head):
49-
5049
while head is not None:
5150
print(head.data, end=" ")
5251
head = head.next
53-
54-
print()
52+
print()
5553

5654

5755
# main

0 commit comments

Comments
 (0)