In this post, we will solve Sort Command #1 HackerRank Solution. This problem (Sort Command #1) is a part of Linux Shell series.
Task
In this challenge, we practice using the sort command to sort input in text or TSV formats.
Given a text file, order the lines in lexicographical order.
Input Format
A text file.
Output Format
Output the text file with the lines reordered in lexicographical order.
Sample Input
Dr. Rajendra Prasad January 26, 1950 May 13, 1962
Dr. S. Radhakrishnan May 13, 1962 May 13, 1967
Dr. Zakir Hussain May 13, 1967 August 24, 1969
Shri Varahagiri Venkata Giri August 24, 1969 August 24, 1974
Shri Fakhruddin Ali Ahmed August 24, 1974 February 11, 1977
Shri Neelam Sanjiva Reddy July 25, 1977 July 25, 198
Sample Output
Dr. Rajendra Prasad January 26, 1950 May 13, 1962
Dr. S. Radhakrishnan May 13, 1962 May 13, 1967
Dr. Zakir Hussain May 13, 1967 August 24, 1969
Shri Fakhruddin Ali Ahmed August 24, 1974 February 11, 1977
Shri Neelam Sanjiva Reddy July 25, 1977 July 25, 198
Shri Varahagiri Venkata Giri August 24, 1969 August 24, 1974
Solution – Sort Command #1 – HackerRank Solution
#Output the text file with the lines reordered in lexicographical order. sort
Note: This problem (Sort Command #1) is generated by HackerRank but the solution is provided by CodingBroz. This tutorial is only for Educational and Learning purpose.