Created
October 14, 2018 15:08
-
-
Save beltiras/3fff76c6f8fc6132563c72a618807ae3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def transpose(matrix): | |
result_matrix = [] | |
for i in range(len(matrix[0])): | |
result_matrix.append([m[i] for m in matrix]) | |
return result_matrix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment