Given a text file file.txt, transpose its content.
You may assume that each row has the same number of columns, and each field is separated by the ' ' character.
Examples
Example 1
name age
alice 21
ryan 30
Example 2
name alice ryan
age 21 30
194. Transpose File
Medium
30 Points
Shell
Given a text file file.txt, transpose its content.
You may assume that each row has the same number of columns, and each field is separated by the ' ' character.