Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
slice and dice solution in Clear category for Replace First by juestr
def replace_first(items: list) -> list:
return items[1:] + items[:1]
Jan. 23, 2020
Comments: