From 45259af7707ca5f0b215cf5bef15065a323a3d28 Mon Sep 17 00:00:00 2001 From: Lavish Saluja Date: Sun, 5 Jan 2020 23:13:26 +0530 Subject: [PATCH] typo --- .../CloneLinkedListWithRandomPointers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Linked Lists/CloneLinkedListWithRandomPointers/CloneLinkedListWithRandomPointers.java b/Linked Lists/CloneLinkedListWithRandomPointers/CloneLinkedListWithRandomPointers.java index 2c0bab2..e8c25a7 100644 --- a/Linked Lists/CloneLinkedListWithRandomPointers/CloneLinkedListWithRandomPointers.java +++ b/Linked Lists/CloneLinkedListWithRandomPointers/CloneLinkedListWithRandomPointers.java @@ -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