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