HackerRank - Sort Command #3
April - 25/2025Problem:
In this challenge, we practice using the sort command to sort input in text or TSV formats.
# Input
- 9.1
- 43.7
- ...
# Output
- 2
- 2.1
- ...
# Solution
sort -rn
sort -rn