HackerRank - 'Sort' command #6

April - 25/2025

Problem:

You are given a file of tab separated weather data (TSV). There is no header column in this data file.

# Input

# Output

# Solution

            
    sort -n -k 2 -t $'\t'
    

Post: