HackerRank - Paste #3

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 replace the newlines in the file with tabs as demonstrated in the sample.

# Input

# Output

# Solution

            
    paste -s
    

# Solution_01

    
    paste -s -d ' '
    

# Solution_02

    
    paste -s -d '\t'
    

# Solution_02

        
    paste -s -d '   '
        

Post: