Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
"Price Research" solution in Clear category for Price Research by U.V
def filter_regions(reg: list[tuple[str, float, float]]) -> list[str]:
ar = [a for a, b, c in reg if float(b) <= float(c * 0.7)]
return ar if ar else ['*']
Sept. 25, 2024
Comments: