Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

typo #32

Merged
merged 1 commit into from
Jan 16, 2020
Merged

typo #32

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public Node copyRandomList(Node head) {
/*
First pass.
Clone each node and link each original node to it's copy
via the original node's net pointer
via the original node's next pointer
*/
while (curr != null) {
// Stash the next value of the current node so we do not lose it
Expand Down