HackerRank - 'Uniq' command #4

April - 25/2025

Problem:

Given a text file, display only those lines which are not followed or preceded by identical replications.

# Input

# Output

# Solution

            
    uniq -u
    

Post: