Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
if total else data solution in Clear category for Shorter Set by veky
def remove_min_max(data: set, total: int) -> set:
return set(sorted(data)[total:-total]) if total else data
Nov. 5, 2021
Comments: