Skip to content

Commit bde2372

Browse files
refactor 19
1 parent c9e6e14 commit bde2372

File tree

1 file changed

+0
-11
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-11
lines changed

src/main/java/com/fishercoder/solutions/_19.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,6 @@
33
import com.fishercoder.common.classes.ListNode;
44
import com.fishercoder.common.utils.CommonUtils;
55

6-
/**19. Remove Nth Node From End of List
7-
*
8-
* Given a linked list, remove the nth node from the end of list and return its head.
9-
* For example, Given linked list: 1->2->3->4->5, and n = 2.
10-
* After removing the second node from the end, the linked list becomes 1->2->3->5.
11-
12-
Note:
13-
Given n will always be valid.
14-
Try to do this in one pass.
15-
*/
16-
176
public class _19 {
187

198
public static class Solution1 {

0 commit comments

Comments
 (0)