import numpy as np def avg(ls: list) -> int: return sum(ls) / len(ls) def decision(h1, h2): if avg(h2) > 0.51: return 1 else: return 0