HackerRank - Paste #1

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

# Input

# Output

# Solution

            
    paste -s -d ';'
    

Post: