-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLC:83.py
29 lines (29 loc) · 1.01 KB
/
LC:83.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
# Definition for singly-linked list.
class ListNode(object):
def __init__(self, val=0, next=None):
self.val = val#stores the value
self.next = next#points to next node , default is None
class Solution(object):
def deleteDuplicates(self, head):#takes head as first node
"""
:type head: Optional[ListNode]
:rtype: Optional[ListNode]
"""
current=head#done to keep track , if not initialized we can confuse head to the first node
while current and current.next:#iterates over all nodes including the last node
if current.val == current.next.val:
current.next=current.next.next#verifies the condition and skips it
else:
current=current.next
return head
'''
more efficient code
def deleteDuplicates(self, head):
curr = head
while curr and curr.next:
if curr.val == curr.next.val:
curr.next = curr.next.next
else:
curr = curr.next
return head
'''