-
Notifications
You must be signed in to change notification settings - Fork 4
/
Day 24 - More Linked Lists.py
62 lines (57 loc) Β· 1.51 KB
/
Day 24 - More Linked Lists.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
54
55
56
57
58
59
60
61
62
# ========================
# Information
# ========================
# Direct Link: https://www.hackerrank.com/challenges/30-linked-list-deletion/problem
# Difficulty: Easy
# Max Score: 30
# Language: Python
# ========================
# Solution
# ========================
class Node:
def __init__(self, data):
self.data = data
self.next = None
class Solution:
def insert(self, head, data):
p = Node(data)
if head is None:
head = p
elif head.next is None:
head.next = p
else:
start = head
while start.next is not None:
start = start.next
start.next = p
return head
def display(self, head):
current = head
while current:
print(current.data, end=' ')
current = current.next
def removeDuplicates(self, head):
#Write your code here
if head is None:
return head
values = [head.data]
temp = head.next
prev = head
while temp:
if temp.data in values:
temp = temp.next
else:
values.append(temp.data)
prev.next = temp
prev = prev.next
temp = temp.next
prev.next = None
return head
mylist= Solution()
T = int(input())
head = None
for i in range(T):
data = int(input())
head = mylist.insert(head, data)
head = mylist.removeDuplicates(head)
mylist.display(head)