An eye-opener in Product

Akshay Ravindran
4 min readOct 7, 2018
Photo by Malte Wingen on Unsplash

Before Going Through the Code Here is a Beginner’s Guide to Java

I have published an ebook. A compilation of 100 Java(Interview)Programming problems which have been solved . I have given clear explanation and the code in the book. Believe me when I say, this will kick start you to achieve the job at your dream company.

Click on this link to get you to the landing page. It is completely free when you use kindle amazon. Take a look at it.

It is Completely free if you have Kindle Unlimited plan. It is worth the read if you want to learn java on your mobile and if you can’t take a paperback to each and every place you travel to. Let’s get to the Problem now

Designer PDF Viewer

When you select a contiguous block of text in a PDF viewer, the selection is highlighted with a blue rectangle. In this PDF viewer, each word is highlighted independently. For example:

In this challenge, you will be given a list of letter heights in the alphabet and a string. Using the letter heights given, determine the area of the rectangle highlight in mm² assuming all letters are 1mm wide.

Input Format

The first line contains 26 space-separated integers describing the respective heights of each consecutive lowercase English letter, ASCII[a-z].
The second line contains a single word, consisting of lowercase English alphabetic letters.

Output Format

Print a single integer denoting the area in mm² of highlighted rectangle when the given word is selected. Do not print units of measure.

Code

static int designerPdfViewer(int[] h, String word) {
int max_h=h[0];
char words[]=word.toCharArray();
int i=0;
while(i<word.length())
{
if(h[words[i]-97]>max_h)
max_h=h[words[i]-97];
i++;
}
int ans=(i*max_h);
return ans;

}

Explanation

This problem asks us to find out the max height present in the given word. And to Calculate the value of area. Which is equal to the product of the,

total count of letters present in the word * the max height of the letter present in the word

Thus we have to find these two values. Then produce the output.

Algorithm

  • Convert the given string into an array of Characters. words[].
  • Initialize the value of max to be the first element of the array h. which holds the value of the heights of the all the letters
  • Traverse through the array words[], If you find the count of that letter is higher than max.

Change the value of max to the current value

  • At the end of the traversal, we would have find out the highest length of the letter present in the word.( the max height of the letter present in the word)
  • Now, the value of i at the end of the traversal would be equal to the length of the word.( total count of letters present in the word)
  • We have find out the individual elements present in the total product.
  • We have to multiply these two values. And Print the answer.

Working of the code

1 3 1 3 1 4 1 3 2 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 7
zaba

Initialize

max_height=1;

i=0;

Iteration 1:

h[‘z’-97]=>h[25]=>7;if(h[25]>max_height);(7>1);true

max_height=7;i=0;

Iteration 2:

h[‘a’-97]=>h[0]=>1;if(h[0]>max_height);(1>7);false

max_height=7;i=1;

Iteration 3:

h[‘b’-97]=>h[1]=>3;if(h[1]>max_height);(3>7);false

max_height=7;i=2;

Iteration 4:

h[‘a’-97]=>h[0]=>1;if(h[0]>max_height);(1>7);false

max_height=7;i=3;

End of traversal

max_height=7;i=4;

ans=(max_height*i);

ans=(7*4)=28mm²;

Conclusion

No Single Solution exists to a problem.Work on the Code. Share your Thoughts with me. These problems are from HackerRank.

You can follow House of Codes to receive updates when we post new coding challenges. Also you could send us your solutions or your ideas for any coding challenge. We would be thrilled to read them. ;)

Visit the previous challenge to know about hurdle race.

--

--

Akshay Ravindran

Code -> Understand-> Repeat is my motto. I am a Data Engineer who writes about everything related to Data Science and Interview Preparation for SDE.