Company Logo - Python HackerRank Solution

Company Logo - Python HackerRank Solution

Hello Friends, How are you? Today I am going to solve the HackerRank Python Company Logo Problem with a very easy explanation. In this article, you will get more than one approach to solve this problem. So let's start-

{tocify} $title={Table of Contents}

Company Logo - Python HackerRank Solution

HackerRank Python Company Logo Solution - Problem Statement

A newly opened multinational brand has decided to base its company logo on the three most common characters in the company name. They are now trying out various combinations of company names and logos based on this condition. Given a string s, which is the company name in lowercase letters, your task is to find the top three most common characters in the string.

  • Print the three most common characters along with their occurrence count.
  • Sort in descending order of occurrence count.
  • If the occurrence count is the same, sort the characters in alphabetical order.

For example, according to the conditions described above,

GOOGLE would have its logo with the letters G, O, and E.

Input Format

A single line of input containing the string S.

Constraints

3 < leg(s) <= 10^4 
S has at least 3 distinct characters

Output Format

Print the three most common characters along with their occurrence count each on a separate line.
Sort output in descending order of occurrence count.
If the occurrence count is the same, sort the characters in alphabetical order.

Sample Input 0

aabbbccde {codeBox}

Sample Output 0

b 3 a 2 c 2 {codeBox}

Explanation 0

aabbbccde

Here, b occurs 3 times. It is printed first.
Both a and c occur 2 times. So, a is printed in the second line and c in the third line because a comes before c in the alphabet.

Note: The string S has at least 3 distinct characters.


Company Logo HackerRank Python Solution

Python Company Logo - Hacker Rank Solution

Approach I: Company Logo HackerRank Python Solution

# Company Logo in python - Hacker Rank Solution
# python 3
#!/bin/python3
# Company Logo in python - Hacker Rank Solution START
import math
import os
import random
import re
import sys
import collections

if __name__ == '__main__':
    s = sorted(input().strip())
    s_counter = collections.Counter(s).most_common()
    s_counter = sorted(s_counter, key=lambda x: (x[1] * -1, x[0]))
    for i in range(0, 3):
        print(s_counter[i][0], s_counter[i][1])
# Company Logo in python - Hacker Rank Solution END
# MyEduWaves

Approach II: Company Logo HackerRank Python Solution

# Company Logo in python - Hacker Rank Solution
# python 3
#!/bin/python3
# Company Logo in python - Hacker Rank Solution START

import math
import os
import random
import re
import sys

import collections

s = sorted(input().strip())
s_counter = collections.Counter(s).most_common()

s_counter = sorted(s_counter, key=lambda x: (x[1] * -1, x[0]))
for i in range(0, 3):
    print(s_counter[i][0], s_counter[i][1])
    
# Company Logo in python - Hacker Rank Solution END
# MyEduWaves



Disclaimer: The above Problem ( Python Company Logo ) is generated by Hackerrank but the Solution is Provided by MyEduWaves. This tutorial is only for Educational and Learning purposes. Authority if any of the queries regarding this post or website fill the contact form.

I hope you have understood the solution to this HackerRank Problem. All these three solutions will pass all the test cases. Now visit Python Company Logo Hackerrank Problem and try to solve it again.

All the Best!

Post a Comment

Previous Post Next Post