Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Transposed Matrix by Moff
def checkio(m):
return [[m[r][c] for r in range(len(m))] for c in range(len(m[0]))]
July 23, 2015