Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Transposed Matrix by boojum
from typing import List
def checkio(data: List[List[int]]) -> List[List[int]]:
return [list(i) for i in zip(*data)]
Aug. 18, 2024
Comments: