Skip to content
Programmingoneonone
Programmingoneonone
  • Engineering Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
    • 100+ C++ Programs
  • Solutions
    • HackerRank
      • Algorithms Solutions
      • C solutions
      • C++ solutions
      • Java solutions
      • Python solutions
      • Data Structures Solutions
    • Leetcode Solutions
    • HackerEarth Solutions
  • Work with US
Programmingoneonone
Programmingoneonone

HackerEarth Little Jhool and the Magical Jewels solution

YASH PAL, 31 July 202414 February 2026
In this HackerEarth Little Jhool and the Magical Jewels, problem-solution Little Jhool is still out of his mind – exploring all his happy childhood memories. And one of his favorite memory is when he found a magical ghost, who promised to fulfill one of Little Jhool’s wishes.
 
Now, Little Jhool was a kid back then, and so he failed to understand what all could he have asked for from the ghost. So, he ends up asking him something very simple. (He had the intuition that he’d grow up to be a great Mathematician, and a Ruby programmer, alas!) He asked the ghost the power to join a set of *the letters r, u, b, and y * into a real ruby. And the ghost, though surprised, granted Little Jhool his wish…
 
Though he regrets asking for such a lame wish now, he can still generate a lot of real jewels when he’s given a string. You just need to tell him, given a string, how many rubies can he generate from it?
 
 
HackerEarth Little Jhool and the Magical Jewels problem solution

 

 

HackerEarth Little Jhool and the Magical Jewels problem solution.

tc = int(raw_input())
while (tc>0):
tc = tc - 1
a = raw_input()
r, u, b, y = a.count('r'), a.count('u'), a.count('b'), a.count('y')
print min(r, min(u, (min(b, y))))
 
 
coding problems solutions HackerEarth HackerEarth

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Programmingoneonone

We at Programmingoneonone, also known as Programming101 is a learning hub of programming and other related stuff. We provide free learning tutorials/articles related to programming and other technical stuff to people who are eager to learn about it.

Pages

  • About US
  • Contact US
  • Privacy Policy

Practice

  • Java
  • C++
  • C

Follow US

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