Hello coders, In this post, you will learn how to solve Sort Command #6 HackerRank Solution. This problem is a part of the Linux Shell series.
We also provide Hackerrank solutions in C, C++, Java programming, and Python Programming languages so whatever your domain we will give you an answer in your field.
You can practice and submit all HackerRank problem solutions in one place. Find a solution for other domains and Sub-domain. I.e. Hacker Rank solution for HackerRank C Programming, HackerRank C++ Programming, HackerRank Java Programming, HackerRank Python Programming, HackerRank Linux Shell, HackerRank SQL Programming, and HackerRank 10 days of Javascript.

As you already know that this site does not contain only the Hacker Rank solutions here, you can also find the solution for other problems. I.e. Web Technology, Data Structures, RDBMS Programs, Java Programs Solutions, Fiverr Skills Test answers, Google Course Answers, Linkedin Assessment, and Coursera Quiz Answers.
Sort command #6 HackerRank Solution
Problem
You are given a file of tab separated weather data (TSV). There is no header column in this data file.
The first five columns of this data are: (a) the name of the city (b) the average monthly temperature in Jan (in Fahreneit). (c) the average monthly temperature in April (in Fahreneit). (d) the average monthly temperature in July (in Fahreneit). (e) the average monthly temperature in October (in Fahreneit).
You need to sort this file in ascending order of the second column (i.e. the average monthly temperature in January).
Input Format
A text file with multiple lines of tab separated data. The first five fields have been explained above
Output Format
Sort the data in ascending order of the average monthly temperature in January.
Sample Input
Albany, N.Y. 22.2 46.6 71.1 49.3 38.60 136 64.4 57
Albuquerque, N.M. 35.7 55.6 78.5 57.3 9.47 60 11.0 64
Anchorage, Alaska 15.8 36.3 58.4 34.1 16.08 115 70.8 39 / 60
Asheville, N.C. 35.8 54.1 73.0 55.2 47.07 126 15.3 39
Atlanta, Ga. 42.7 61.6 80.0 62.8 50.20 115 2.1 69 / 65
Atlantic City, N.J. 32.1 50.6 75.3 55.1 40.59 113 16.2 60 / 54
Austin, Texas 50.2 68.3 84.2 70.6 33.65 85 0.9 62 / 58
Baltimore, Md. 32.3 53.2 76.5 55.4 41.94 115 21.5 53
Baton Rouge, La. 50.1 66.6 81.7 68.1 63.08 110 0.2 52 / 46
Billings, Mont. 24.0 46.1 72.0 48.1 14.77 96 56.9 69
Birmingham, Ala. 42.6 61.3 80.2 62.9 53.99 117 1.5 60
Bismarck, N.D. 10.2 43.3 70.4 45.2 16.84 96 44.3 64
Boise, Idaho 30.2 50.6 74.7 52.8 12.19 89 20.6 64
Boston, Mass. 29.3 48.3 73.9 54.1 42.53 127 42.8 52 / 66
Bridgeport, Conn. 29.9 48.9 74.0 54.7 44.15 119 26.2 55 / 49
Sample Output
Bismarck, N.D. 10.2 43.3 70.4 45.2 16.84 96 44.3 64
Anchorage, Alaska 15.8 36.3 58.4 34.1 16.08 115 70.8 39 / 60
Albany, N.Y. 22.2 46.6 71.1 49.3 38.60 136 64.4 57
Billings, Mont. 24.0 46.1 72.0 48.1 14.77 96 56.9 69
Boston, Mass. 29.3 48.3 73.9 54.1 42.53 127 42.8 52 / 66
Bridgeport, Conn. 29.9 48.9 74.0 54.7 44.15 119 26.2 55 / 49
Boise, Idaho 30.2 50.6 74.7 52.8 12.19 89 20.6 64
Atlantic City, N.J. 32.1 50.6 75.3 55.1 40.59 113 16.2 60 / 54
Baltimore, Md. 32.3 53.2 76.5 55.4 41.94 115 21.5 53
Albuquerque, N.M. 35.7 55.6 78.5 57.3 9.47 60 11.0 64
Asheville, N.C. 35.8 54.1 73.0 55.2 47.07 126 15.3 39
Birmingham, Ala. 42.6 61.3 80.2 62.9 53.99 117 1.5 60
Atlanta, Ga. 42.7 61.6 80.0 62.8 50.20 115 2.1 69 / 65
Baton Rouge, La. 50.1 66.6 81.7 68.1 63.08 110 0.2 52 / 46
Austin, Texas 50.2 68.3 84.2 70.6 33.65 85 0.9 62 / 58
Explanation
The data has been sorted in ascending order of the average monthly temperature in January (i.e, the second column).
Explanation 0
The data has been sorted in descending order of the average monthly temperature in January (i.e, the second column).
Sort command #6 HackerRank Solution
#The data has been sorted in ascending order of the average monthly temperature in January (i.e, the second column) in a tsv file sort -n -k2 -t$'\t'
Note: This problem (‘Sort’ command #6) is generated by HackerRank but the solution is provided by chase2learn. This tutorial is only for Learning and Educational purpose. Sort command #6 HackerRank Solution
FAQ:
Bash and Linux Shell Practice on Hacker Rank
Bash and Linux Shell Practice. Learn and practice your Linux bash and text processing skills. The contest has ended. Speed. Accuracy. Efficiency.
Is it worth solving Linux Shell challenges in HackerRank?
Of course its worth . You might get some basic knowledge of for what kind of problem what command would be best .
What shell is in Linux?
sh – This is known as the Borne Shell and is the original shell; csh, tcsh – These are well-known and widely used derivatives of the Borne shell; ksh – The popular Korn shell; and. bash – The Borne Again SHell is the most popular shell used for linux and developed by GNU.
Where can I find HackerRank solutions in Linux Shell?
in this post you will get all the solutions of HackerRank Linux Shell Problems.
Note:- I compile all programs, if there is any case program is not working and showing an error please let me know in the comment section. If you are using adblocker, please disable adblocker because some functions of the site may not work correctly.
Conclusion
Finally, we are now, in the end, I just want to conclude some important message for you
Note:- I compile all programs, if there is any case program is not working and showing an error please let me know in the comment section. If you are using adblocker, please disable adblocker because some functions of the site may not work correctly.
Please share our posts on social media platforms and also suggest to your friends to Join Our Groups. Don’t forget to subscribe.
We Have Covered Hackerrank linux all question answers :
hackerrank,hackerrank linux problem solution,hackerrank linux shell problems solutions,hackerrank linux program,hackerrank solutions,hackerrank problems solutions,hackerrank problem,hackerrank solution,hackerrank linux shell problem solution,hackerrank problems,hackerrank program,hackerrank programs,hackerrank linux command,linux program,linux shell,linux solution,linux shell programs,hackerrank linux paste problem solution,hackerrank linux programs