Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Line solution in Creative category for Transposed Matrix by caynan
def checkio(data):
# zip(*data) -> transpose of data, but return a list of tuples.
# map(...) -> transform the previous list into a list of lists as expected
# list(map(...)) -> get a list from the map iterable object
return list(map(list,zip(*data)))
March 22, 2015
Comments: