Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Split and concatenate solution in Clear category for Replace First by new_hoschi
def replace_first(items: list):
return items[1:]+[items[0]] if items else []
March 28, 2020
Comments: