First solution in Speedy category for Replace First by OrdoFlammae
def replace_first(items: list) -> list: return items[1:] + items[:1]
Oct. 12, 2020