def f(L):
    return list(map(lambda x: L[x:], L))




















##Worst case O(n^2) time. Consider L = [0]*n.
