December 23, 2018
Matrix transposition
If A là một ma trận có kích thước n x m với các giá trị aij tại hàng i, cột j, thì ma trận chuyển vị B = AT là ma trận có kích thước m x n với các giá trị: bij = ashow up
For example:
Threads: A matrix for size n x m. Find the matrix transpose of the matrix A.
Input: The first line contains 2 n, m separated by spaces. The next n lines each containing m integers separated by spaces.
Output: Matrix transpose of the matrix gave.
For example:
input: 3 2 1 2 3 4 5 6 output: 1 3 5 2 4 6
You are not logged in? Log in to Submit Now!