-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path19.py
53 lines (45 loc) · 1.43 KB
/
19.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'''
19. Remove Nth Node From End of List
https://leetcode.com/problems/remove-nth-node-from-end-of-list
Hi, here's your problem today. This problem was recently asked by AirBNB:
You are given a singly linked list and an integer k.
Return the linked list, removing the k-th last element from the list.
Try to do it in a single pass and using constant space.
Example:
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end,
the linked list becomes 1->2->3->5.
Note:
Given n will always be valid.
Follow up:
Could you do this in one pass?
'''
class Node:
def __init__(self, val, next=None):
self.val = val
self.next = next
def __str__(self):
current_node = self
result = []
while current_node:
result.append(current_node.val)
current_node = current_node.next
return str(result)
class Solution:
def removeNthFromEnd(self, head: Node, n: int) -> Node:
dummy = Node(-1, head)
# Need dummy here since head might be removed
first, second = dummy, dummy
for i in range(n+1):
first = first.next
while first is not None:
first = first.next
second = second.next
second.next = second.next.next
return dummy.next
head = Node(1, Node(2, Node(3, Node(4, Node(5)))))
print(head)
# [1, 2, 3, 4, 5]
head = Solution().removeNthFromEnd(head, 3)
print(head)
# [1, 2, 4, 5]