You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:rtype: void Do not return anything, modify node in-place instead.
"""
node.val=node.next.val # As we do not move back in singly linklist and also we do not traverse ll because we do not have head, so we put next value in given node
node.next=node.next.next # and then point it to next of next.