Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
use slices solution in Clear category for Replace First by kdim
from typing import Iterable
def replace_first(items: list) -> Iterable:
return items[1:] + items[:1]
Jan. 10, 2021
Comments: