Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
List comprehension solution in Clear category for Transposed Matrix by tommy6073
def checkio(data):
return [[data[row][col] for row in range(len(data))] for col in range(len(data[0]))]
July 7, 2016