HackerRank - Paste #4

April - 25/2025

Problem:

In this challenge, we practice using the paste command to merge lines of a given file.

Given a CSV file where each row contains the name of a city and its state separated by a comma, your task is to restructure the file in such a way, that three consecutive rows are folded into one, and separated by tab.

# Input

# Output

# Solution

            
    paste -d ' ' - - - $1
    

# Solution_01

    
    paste -d '\t' - - - $1
    

Post: