Skip to content
Programmingoneonone
Programmingoneonone

Learn everything about programming

  • Home
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
    • Cybersecurity
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programmingoneonone
Programmingoneonone

Learn everything about programming

HackerRank ‘Uniq’ Command #1 problem solution

YASH PAL, 31 July 2024

In this HackerRank ‘Uniq’ Command #1 problem solution In this challenge, we practice using the uniq command to eliminate consecutive repetitions of a line when a text file is piped through it. we have given a text file, remove the consecutive repetitions of any line.

Plain Uniq

If this is the file test.txt:

00

00

01

01

00

00

02

02

This is the output on passing it through the uniq command, either via pipes or as input via STDIN:

Command:  uniq < test.txt 

00

01

00

02  

The first two lines of the original file are the same, (00). The next two lines are (01) which are followed by two repetitions of (00) again and two repetitions of (02). The uniq command replaces the consecutive repetitions with only one line in each case.

Other possible options:

  1. Limit comparison only to the first N characters (using the -w option).
  2. Avoid comparing the first N characters (using the -s option).
  3. Ignore variations in case between lines (using the -i option).
  4. Avoid comparing the first N fields (using the -f option).
  5. Prints those lines that are succeeded and preceded by different lines (using the -u option).
  6. Prints those lines that are followed by one or more repetitions immediately after them (using the -d option).
  7. Print the count of repetitions for each of the lines it collapses (using -c option).
HackerRank 'Uniq' Command #1 problem solution

Problem solution.

uniq

coding problems solutions linux shell

Post navigation

Previous post
Next post

Are you a student and stuck with your career or worried about real-time things, and don't know how to manage your learning phase? Which profession to choose? and how to learn new things according to your goal, and land a dream job. Then this might help to you.

Hi My name is YASH PAL, founder of this Blog and a Senior Software engineer with 5+ years of Industry experience. I personally helped 40+ students to make a clear goal in their professional lives. Just book a one-on-one personal call with me for 30 minutes for 300 Rupees. Ask all your doubts and questions related to your career to set a clear roadmap for your professional life.

Book session - https://wa.me/qr/JQ2LAS7AASE2M1

Pages

  • About US
  • Contact US
  • Privacy Policy

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes