Skip to content

Commit 81e2726

Browse files
authored
Update Linked List/README.markdown
1 parent 4c718b4 commit 81e2726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Linked List/README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ Recursive Approach:
491491
}
492492
let temp = reverse(head.next)
493493
head.next.next = head
494-
head.next = NULL
494+
head.next = nil
495495
return temp
496496
}
497497
```

0 commit comments

Comments
 (0)