Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
standard zip(*data) trick solution in Clear category for Transposed Matrix by piter239
from typing import List
def checkio(data: List[List[int]]) -> List[List[int]]:
return list(map(list, zip(*data)))
April 27, 2020
Comments: