HackerRank - Sort Command #1

April - 25/2025

Problem:

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

# Output

# Solution

            
    sort -n
    

Post: