Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Transpose using zip solution in Clear category for Transposed Matrix by kkkkk
from typing import List
def checkio(data: List[List[int]]) -> List[List[int]]:
"""Transpoase matrix as a list/tuple with integers."""
return [list(x) for x in zip(*data)]
Nov. 19, 2019
Comments: