# Sort along rows in descending order. temp =np.array([[11,22,33,44,55], [55,66,77,88,11],[88,99,10,11,22],[11,22,33,55,44],[11 | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

# Sort along rows in descending order. temp =np.array([[11,22,33,44,55], [55,66,77,88,11],[88,99,10,11,22],[11,22,33,55,44],[11

# Sort along rows in descending order. temp =np.array([[11,22,33,44,55], [55,66,77,88,11],[88,99,10,11,22],[11,22,33,55,44],[11,44,33,22,55]]) arr2 = np.sort(temp)[::-1] print('Sorted Array in Descending Order: ', arr2) is this in rows? How to do in in columns?

3rd Oct 2021, 12:52 PM
Zhenis Otarbay
Zhenis Otarbay - avatar
1 Antwort
+ 2
#formula from google there might have other (smarter and shorter) ways to solve this problem,but this is my try to help for you. I hope this makes sense to you https://code.sololearn.com/c1hDheJtNBr0/?ref=app
3rd Oct 2021, 4:24 PM
Myo Thuzar
Myo Thuzar - avatar