T.E.M. Κεφ5 Δρ3 έλεγχος αύξουσας ταξινομημένης λίστας
Τι θα εμφανίσει το παρακάτω πρόγραμμα;
def isAscending(mylist):
ascending = True
i = 0
N = len(mylist)
while ascending and i < N-1:
if myList[i] > myList[i + 1]:
ascending = False
i = i + 1
return ascending
L = [12, 40, 58, 80, 79]
print isAscending(L)
True | |
False | |
[12, 40, 58, 79, 80] | |
None |