• + 0 comments

    Looks great, my python solution printed an unzipped list.

    # separates n and d values into two variables
    n, d = [int(x) for x in input().split()]
    # creates list of integers
    lst = [int(x) for x in input().split()]
    
    # From inner most function to outermost=============
    # creates a list using lst[d:] and combines it with lst[0:d]
    # unzips list (* = unzips)
    # prints list
    print(*(lst[d:]+lst[0:d]))