Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
1-liner works just as much as I can hope solution in Creative category for Replace First by Stensen
replace_first = lambda l: l[1%len(l):]+l[:1%len(l)] if not len(l)==0 else l
Sept. 20, 2020
Comments: