描述
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.
题目链接:https://leetcode.com/problems/transpose-file/
分析
矩阵转制,用一个数组保存结果。
代码
1 | awk '{\ |