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

HackerEarth What is the string made of? problem solution

YASH PAL, 31 July 2024
In this HackerRank What is the string made of? problem solution You are given a string, which contains entirely decimal digits (0-9). Each digit is made of a certain number of dashes, as shown in the image below. For instance, 1 is made of 2 dashes, 8 is made of 7 dashes, and so on.
You have to write a function that takes this string message as an input and returns a corresponding value in terms of a number. This number is the count of dashes in the string message.
HackerEarth What is the string made of? problem solution

HackerEarth What is the string made of problem solution.

a = raw_input()
ans = 0
for i in a:
if i == '0':
ans += 6
if i == '1':
ans += 2
if i == '2':
ans += 5
if i == '3':
ans += 5
if i == '4':
ans += 4
if i == '5':
ans +=5
if i == '6':
ans += 6
if i == '7':
ans += 3
if i == '8':
ans += 7
if i == '9':
ans += 6
print ans
coding problems

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