• + 0 comments

    def hurdleRace(k, height): max1 = max(height) if max1-k < 0: return 0 else: return max1-k