We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6bd91b commit 0973f45Copy full SHA for 0973f45
19. Remove Nth Node From End of List
@@ -0,0 +1,34 @@
1
+/**
2
+ * Definition for singly-linked list.
3
+ * public class ListNode {
4
+ * int val;
5
+ * ListNode next;
6
+ * ListNode(int x) { val = x; }
7
+ * }
8
+ */
9
+public class Solution {
10
+ public ListNode removeNthFromEnd(ListNode head, int n) {
11
+ if(n<=0){
12
+ return null;
13
+ }
14
+ ListNode dummy = new ListNode(0);
15
+ dummy.next = head;
16
+
17
+ ListNode predelete = dummy;
18
+ for(int i =0; i<n;i++){
19
+ if(head == null){
20
21
22
+ head = head.next;
23
24
25
+ while(head != null){
26
27
+ predelete = predelete.next;
28
29
30
+ predelete.next = predelete.next.next;
31
+ return dummy.next;
32
33
34
+}
0 commit comments