This is my code:
a = [[3,2,1],[4,3,2],[5,4,3]]
for i in range(0, len(a)):
for j in range(0, len(a[i])):
a[i].sort()
print(a)
The problem is that you are only organizing the first position. Could someone give me an orientation...
asked by
04.08.2018 / 04:15