Skip to content

Commit 48d06e9

Browse files
committed
rename file
1 parent f3828ca commit 48d06e9

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

Linked List/Kth_nodedelete.js renamed to Linked List/delete_kth_node.js

-5
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ Now you can create a linked list and call the removeKthFromEnd function to remov
1414
1515
*/
1616

17-
-------------------------------------------------------------------------//Javascript code begins here------------------------------------------------------------------------
18-
19-
20-
2117
class Node {
2218
constructor(value) {
2319
this.value = value;
@@ -73,7 +69,6 @@ while (current !== null) {
7369
current = current.next;
7470
}
7571

76-
7772
/*
7873
OUTPUT:
7974
1

0 commit comments

Comments
 (0)