Tip 1 : Focus more on data structures and algorithms and never burn out as it will take time learn.
Tip 2 : Work on at least one development technology. Be it web development or app development or ML etc
Tip 1 : For Freshers please concise all matter of your resume in one page.
Tip 2 : Try to use STAR pattern while describing your project which is Situation, Task, Action and Result.
It was an online round on platform Mettl and it was of 90 minutes. Round begin by registering on platform and showing identity card of college and all formalities were fulfilled.



1. A word is a sequence of one or more lowercase characters.
2. Words are separated by a single whitespace character.
For the given string 'A' = “coding ninjas coding ninjas” and 'B' = “data structures and algorithms”, so both the word 'coding' and 'ninjas' are not present in string 'B' and occur two times each, but the word “coding” is lexicographically smaller than the word “ninjas”. So the answer is “coding”.
Step 1 : Made a HashMap which stores the frequency of every character in the string
Step 2 : iterated over the map and find out the maximum frequency for it.
Step 3 : again iterated over map and find out the smallest character having max frequency.



The answer could be very large, output answer %(10 ^ 9 + 7).



it was a basic permutation and combination problem of using binomial coefficients.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?