Skip to content

Commit 4c718b4

Browse files
author
vp4
committed
Remove semicolon
1 parent 027dc78 commit 4c718b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Linked List/README.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -490,9 +490,9 @@ Recursive Approach:
490490
return head
491491
}
492492
let temp = reverse(head.next)
493-
head.next.next = head;
494-
head.next = NULL;
495-
return temp;
493+
head.next.next = head
494+
head.next = NULL
495+
return temp
496496
}
497497
```
498498

0 commit comments

Comments
 (0)