Tip 1 : Clear your Basics
Tip 2 : Be Confident
Tip 3 : Prepare everything about your Previous project
Tip 1 : Highlight your skills
Tip 2 : Have some projects on resume.



1) The character ‘C’ is a lowercase English alphabet that is given as input.
2) For example, if the character is 'C' is "d" then, the alphabetical order starts with "d" will look like {d,e,f,....,y,z,a,b,c}.
3) Every string in the array consists of only lowercase English alphabets.
Step 1 : I first create comparator interface
Step 2 : Then used Comarator.sort
Step 3 : Then I gave solution with merge sort and interviewer was happy.



A subsequence is a sequence that can be derived from another sequence by deleting some or no elements without changing the order of the remaining elements.
You need to print your answer modulo 10^9 + 7.
Let us take A = [1,2,3] and P = 4.
All the subsequences not having product more than ‘4’ are {1}, {2}, {3}, {1,2}, {1,3}. Therefore count is equal to ‘5’.
Step 1 : I first applied bubble sort. It was not good enough.
Step 2 : Interviewer asked me to optimise the solution.
Step 3 : Then i gave solution with merge sort and interviewer was happy.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?