Tip 1 : Be consistent, keep the goal to achieve, never give up.
Tip 2 : Refer to all interview experiences, give more interviews and have a good resume
Tip 1 : Keep it simple, don't overfill
Tip 2 : Be thorough with what you know
Tip 3 : mention your recent projects and achievements
There were 3 coding questions, 1 easy, 1 medium and 1 hard, criteria was to clear atleast 2


Input: 'M' = 2, ‘N’ = 2
Output:
**
**
just followed the pattern and tried to code



Followed the merge proccess of merge sort



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
By using partition method
This round was majorly based on dsa skills



Duplicate number is always present in the given array/list.
first gave a brute force approach then reduced time complexity by using floyd's algorithm, using slow and fast pointer



Input:
H = 2
Output:
3
There will be a total 3 different balanced binary trees with height 2.
One node as a root and other nodes on one of the two sides.
One with root and left subtree with one more node than right.
One with root and right subtree with one more node than left.
Used recursive approach to solve this problem
Asked simple questions on project, java and basd on resume
the asked me one LLD question and 1 leetcode hard problem



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
First solved it using dp, later reduced space using 2 pointer method
Design a chess board using java using oops and classes, write all necessary functions with king and knight move
Tip 1 : be good with basics of oops, classes and methods
Tip 2 : try to come up with innovative ideas of how to tackle a problem
Tip 3 : executable code is not needed just the idea and approach is important
Easy HR questions about myself
Asked about college, projects, why am I choosing hashedin, what am I expecting, where do i see myself in 5 years
Tip 1 : Have a good communication skills
Tip 2 : Be good and friendly

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?