HackerRank - Paste #2

April - 25/2025

Problem:

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

You are 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 so that three consecutive rows are folded into one line and are separated by semicolons.

# Input

# Output

# Solution

            
    paste -d ';' --- $1
    
    
    paste -s -d ';;\n'
    

Post: