-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday_24.py
36 lines (32 loc) · 969 Bytes
/
day_24.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
class Node:
def __init__(self,data):
self.data = data
self.next: Node = 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: Node) -> Node:
if head is None:
return head
current = head
while current.next is not None:
if current.data == current.next.data:
current.next = current.next.next
else:
current = current.next
return head