HackerRank - Sort Command #2

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 reverse lexicographical order (i.e. Z-A instead of A-Z).

# Input

# Output

# Solution

            
    sort -r
    

Post: