'Uniq' Command #1, is a HackerRank problem from Text Processing subdomain. In this post we will see how we can solve this challenge in Sh

Problem Description

In this challenge, we practice using the uniq command to eliminate consecutive repetitions of a line when a text file is piped through it. Given a text file, remove the consecutive repetitions of any line.

Sample Input

00 00 01 01 00 00 02 02

Sample Output

00 01 00 02

'Uniq' Command #1 ....

You can find the full details of the problem 'Uniq' Command #1 at HackerRank

Solution: Please check the the-uniq-command-1.sh snippet for the solution.

This solution originally posted at: Github by @srgnk