0
Transpose of matrix
Can anyone tell me how can we find transpose of matrix in O(n) time.
1 Antwort
+ 2
What is `n` in this case? Finding the transpose of a n*m matrix is always going to take O(n*m), since you have to touch every element and move it somewhere else.