def Map(x,y):
    for i in range(len(y)):
        y[i]=x(y[i])
    return y