Skip to content

Commit 505b65c

Browse files
Changed URL to correct one
1 parent 4ff4830 commit 505b65c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

javascript/0019-remove-nth-node-from-end-of-list.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* https://leetcode.com/problems/merge-two-sorted-lists/
2+
* https://leetcode.com/problems/remove-nth-node-from-end-of-list/
33
* Time O(N) | Space O(N)
44
* @param {ListNode} head
55
* @param {number} n
@@ -36,7 +36,7 @@ const moveSlow = (slow, fast) => {
3636
}
3737

3838
/**
39-
* https://leetcode.com/problems/merge-two-sorted-lists/
39+
* https://leetcode.com/problems/remove-nth-node-from-end-of-list/
4040
* Time O(N) | Space O(1)
4141
* @param {ListNode} head
4242
* @param {number} n

0 commit comments

Comments
 (0)