Skip to content
Programming101
Programming101

Learn everything about programming

  • Home
  • CS Subjects
    • IoT – Internet of Things
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programming101
Programming101

Learn everything about programming

HackerRank Cut #4 problem solution

YASH PAL, 31 July 2024

In this HackerRank Cut #4 problem solution, we need to display the first four characters from each line of text.

Input Format

A text file with lines of ASCII text only.

Constraints

1 <= N <= 100

(N is the number of lines of text in the input file)

Output Format

The output should contain N lines. Each line should contain just the first four characters of the corresponding input line.

Sample Input

Hello

World

how are you

Sample Output

Hell

Worl

how 

HackerRank Cut #4 problem solution

Problem solution.

while read line
do
    echo $line | cut -c 1-4
done

Second solution.

cut -c1,2,3,4

Third solution.

cut -c1-4

coding problems linux shell

Post navigation

Previous post
Next post
  • How AI Is Revolutionizing Personalized Learning in Schools
  • GTA 5 is the Game of the Year for 2024 and 2025
  • Hackerrank Day 5 loops 30 days of code solution
  • Hackerrank Day 6 Lets Review 30 days of code solution
  • Hackerrank Day 14 scope 30 days of code solution
©2025 Programming101 | WordPress Theme by SuperbThemes