03a907a
1
2
3
4
def normalize_scores(scores: list[float]) -> list[float]: total = sum(scores) return [s / total for s in scores]