Skip to content

Commit b232860

Browse files
Update 2. Linked List Input & Print.ipynb
1 parent 4666715 commit b232860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

10. Linked List-1/2. Linked List Input & Print.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"def printLL(head):\n",
2424
" \n",
2525
" while head is not None:\n",
26-
" print(str(head.data) + \"->\",end=\"\")\n", #this str is required
26+
" print(str(head.data) + \"->\",end=\"\")\n",
2727
" head = head.next\n",
2828
" print(\"None\")\n",
2929
" return\n",

0 commit comments

Comments
 (0)