Seřazení podproblémů podle kódu místo podle jména

This commit is contained in:
Jonas Havelka 2021-11-29 23:46:30 +01:00
parent 9cb5c8ca59
commit abc479b549

View file

@ -310,7 +310,13 @@ def podproblemy_v_cislu(cislo, problemy=None, hlavni_problemy=None):
podproblemy[-1].append(problem)
for podproblem in podproblemy.keys():
podproblemy[podproblem] = sorted(podproblemy[podproblem], key=lambda it: it.kod)
def int_or_zero(p):
try:
return int(p.kod)
except ValueError:
return 0
podproblemy[podproblem] = sorted(podproblemy[podproblem], key=int_or_zero)
return podproblemy