Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Remove All Before by Raszlo
from typing import Iterable
def remove_all_before(items: list, border: int) -> Iterable:
return items[items.index(border):] if border in items else items
April 22, 2020