We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4666715 commit b232860Copy full SHA for b232860
10. Linked List-1/2. Linked List Input & Print.ipynb
@@ -23,7 +23,7 @@
23
"def printLL(head):\n",
24
" \n",
25
" while head is not None:\n",
26
- " print(str(head.data) + \"->\",end=\"\")\n", #this str is required
+ " print(str(head.data) + \"->\",end=\"\")\n",
27
" head = head.next\n",
28
" print(\"None\")\n",
29
" return\n",
0 commit comments