Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Plain solution in Clear category for Remove All Before by Krischtopp
def remove_all_before(items: list, border: int):
return items[items.index(border):] if border in items else items
Jan. 11, 2021