Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One line solution solution in Uncategorized category for Transposed Matrix by chupacabras
def checkio(matr):
'''
return a transposed matrix
'''
return [list(item) for item in zip(*matr)]
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')
Nov. 5, 2012