Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_remove_all_after solution in Uncategorized category for Remove All After by Jon_Red
def remove_all_after(i:list,b:int)->list:
return i[:i.index(b)+1 if b in i else None]
May 13, 2020
Comments: