Tip 1 : Have self confidence during the interview
Tip 2 : Practice DSA problems with variety of topics
Tip 3 : Have good knowledge of the projects mentioned in the resume
Tip 1 : The resume should be one-pager and try to highlight important information.
Tip 2 : It should be grammatically correct.
It had 2 leetcode medium and 1 leetcode hard question, need to be solved in 1.5 hours.



If the bus route is [3, 6, 7], then it will travel in sequence
3 > 6 > 7 > 3 > 6 > 7….
Values of A[i] are distinct.
(Medium) Solved by doing bfs and considering the graph as undirected.

The GCD of a list of numbers is defined as the greatest number that perfectly divides all the members of the given list. For example, the GCD of 6, 8, and 10 is 2.
For example: the array [1, 2] has subsequences: [1], [2] and [1, 2]. Similarly for the array [1, 2, 3], one of the subsequences is [1, 3].



For a string “qaacde”, This string has two same adjacent characters.
So, one possible way to rearrange the string is “qacade”. Now, this string does not have two adjacent characters that are the same.
There were two questions asked related to Arrays and graphs, to be solved in 1 hour in front of interviewer.



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?
The idea is to use Hashing. We first insert all elements in a Set. Then check all the possible starts of consecutive subsequences.



The idea is to keep an additional matrix to keep track of the visited nodes in the given matrix, and perform DFS to find the total number of islands.
It had mix-up of questions from core subjects. The interviewer was quite chill.
What is multithreading?
What is Outer left join?
Gave some sample tables and asked to perform outer left join manually as well to write a query as well.

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?