HackerRank - Cut #5

April - 25/2025

Problem:

Given a tab delimited file with several columns (tsv format) print the first three fields.

# Input

# Output

# Solution

            
    cut -f 1-3
    

Post: