Python LL

# This is the class of the input linked list.

class LinkedList:

    def __init__(self, value):

        self.value = value

        self.next = None



def shiftLinkedList(head, k):

    # Write your code here.

    pass

Comments

Popular posts from this blog

Sum of Even Numbers till N

Find the Runner-Up Score!

Print All Substrings