Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Remove all before solution solution in Clear category for Remove All Before by Pete_Kei_Cunliffe
from typing import Iterable
def remove_all_before(items: list, border: int) -> Iterable:
return items[items.index(border):] if border in items else items
March 18, 2021
Comments: