0
How can i zip all the values for a particular coloumn in a matrix?
For ex: 1 0 0 1 0 5 0 5 2 0 3 3 Op should be: [[1,0,2],[0,5,0],[0,0,3],[1,5,3]]
4 Réponses
+ 5
So, you basically want to transpose the matrix using zip()
https://code.sololearn.com/cA23a12a98A1/?ref=app
+ 3
ChaoticDawg ... very cool!
Just as alternative and less cool:
https://code.sololearn.com/cZF76ixI1B5f/?ref=app
+ 2
Lothar supposed to transpose a matrix not flatten, but still 👍👍
+ 1
Both of u were very cool😁