Σ.Μ. Κεφ5 πιο συνοπτικός τρόπος 1ο πέρασμα
Επιλέξτε έναν πιο συνοπτικό τρόπο εκτέλεσης των παρακάτω εντολών, που δηλώνουν το πρώτο πέρασμα της αύξουσας ταξινόμησης σε μια λίστα 5 στοιχείων:
if students[4] < students[3]:
students[4], students[3] = students[3], students[4]
if students[3] < students[2]:
students[3], students[2] = students[2], students[3]
if students[2] < students[1]:
students[2], students[1] = students[1], students[2]
if students[1] < students[0]:
students[1], students[0] = students[0], students[1]
| |
| |
| |
|