Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Transposed Matrix by fed.kz
from typing import List
def checkio(data: List[List[int]]) -> List[List[int]]:
return list(map(list, zip(*data)))
Oct. 3, 2018