Tip 1 : Solve At least 200+ DSA questions on LeetCode/GFG.
Tip 2 : Do computer science subjects like DBMS, Operating System, and OOPS
Tip 3 : Do at least 2 projects and a Puzzle.
Tip 1 : Have a Good coding profile like solving at least 200+ problems on DSA
Tip 2 : Have knowledge of Operating systems, OOPs, Automation Testing, and DBMS
Tip 3 : Do not put false things on your resume.
The window of the test starts from 6 PM to 6 AM.
HackerEarth Environment Ide is good to Code.
Open your Laptop/PC Camera



Input: ‘L’ = ‘1’ , 'R' = ‘3’
Output: 1
As ‘1’ is the only Beautiful Number.
3 is not Beautiful as,
3 -> 9
9 -> 81
81 -> 65
65 -> 61 … and so on
It can be shown that we cannot get 1.



for the given 5 intervals - [1,4], [3,5], [6,8], [10,12], [8,9].
Since intervals [1,4] and [3,5] overlap with each other, we will merge them into a single interval as [1,5].
Similarly [6,8] and [8,9] overlaps, we merge them into [6,9].
Interval [10,12] does not overlap with any interval.
Final List after merging overlapping intervals: [1,5], [6,9], [10,12]
The timing would be 3:00 PM to 4:00 PM.
Platform Google Meet
The interviewer was good.



N = 5
ARR = [ 3, -6, 7, -7, 0 ]
Out of all pairs, (-7,-6) have a difference of ‘1’, and no other pair has less difference. So ‘ANS’ is ‘1’.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
The timing would be 3:00 PM to 4:00 PM.
Platform Google Meet
The interviewer was good.



1. ‘.’ matches to any single character.
2. ‘*’ matches to zero or more of the preceding element.
1. You have to match the entire string with the pattern given.
2. Both the strings, 'S' and 'P' contain only lower-case alphabets.
3. Only the pattern will contain additional characters ‘*’ and ‘.’ along with alphabets.

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