Scoring
The first two points are worth 30 points. The last one is worth 40 points.
>>> ordena3('c', 'b', 'a') ('a', 'b', 'c') >>> ordena3(1, 2, 1) (1, 1, 2) >>> ordena2('d', 'b') ('b', 'd') >>> ordena2(1, 1) (1, 1) >>> ordena3_2a2('c', 'b', 'a') ('a', 'b', 'c') >>> ordena3_2a2(1, 2, 1) (1, 1, 2)