Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Transposed Matrix by sleepyone
def checkio(matr):
'return a transposed matrix'
return [[matr[i][j] for i in range(len(matr))] for j in range(len(matr[0]))]
if __name__ == '__main__':
assert checkio([[1,2],
[1,2]]) == [[1, 1],
[2, 2]], 'First'
assert checkio([[1,0,3,4,0],
[2,0,4,5,6],
[3,4,9,0,6]]) == [[1, 2, 3],
[0, 0, 4],
[3, 4, 9],
[4, 5, 0],
[0, 6, 6]],'Second'
print('All ok')
Oct. 29, 2012
Comments: