Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Transposed Matrix by dmitry.knorre
def checkio(matrix):
newmatrix = []
for i in range(len(matrix[0])):
newmatrix.append([])
for row in matrix:
newmatrix[-1].append(row[i])
return newmatrix
Aug. 30, 2015
Comments: