Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Transposed Matrix by tokiojapan55
from typing import List
def checkio(data: List[List[int]]) -> List[List[int]]:
return [[data[r][c] for r in range(len(data))] for c in range(len(data[0]))]
June 2, 2020
Comments: