Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
With Numpy solution in 3rd party category for Transposed Matrix by alexgerdom
import numpy as np
def checkio(data):
A = np.array(data)
return A.T.tolist()
July 6, 2016