Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Transposed Matrix by Margaruga
def checkio(matrix):
new = []
for nrow in range(len(matrix[0])):
new.append(list())
for ncol in range(len(matrix)):
new[nrow].append(matrix[ncol][nrow])
return new
#These "asserts" using only for self-checking and not necessary for auto-testing
May 22, 2014
Comments: