1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public ListNode removeNthFromEnd(ListNode head, int n) {
if(head == null){
return null;
}

if(head.next == null){
return null;
}



ListNode ans = head;
ListNode cur = head;

for(int i = 0; i < n; i++){
if(cur.next == null){
if(i == n-1){
return head.next;
}
return null;
}
else{
cur = cur.next;
}
}

while(cur.next != null){
ans = ans.next;
cur = cur.next;
}

ans.next = ans.next.next;


return head;
}