Write sort_by_score(people) where people is a list of dicts each holding "name" and "score".
Return a new list ordered by score, highest first.
Two people on the same score keep the order they arrived in - Python's sort is stable, so you get this for free if you sort once on the right key.
Do not modify the list you were given.