Tip 1: Do revise your projects.
Tip 2: Prepare DSA well, and I recommend Coding Ninjas for interview preparation.
Tip 3: Be confident and relaxed during the interview.
Tip 1: Make your resume short and try to keep it to one page only. Mention all the skills that you are confident in.
Tip 2: Do not include false information on your resume.
In that round, 60 Technical questions like output-based and oops-based and some of them are SQL (Easy-Medium) + 10 Aptitude(Easy). There are negative markings for MCQs. If you clear this round then only you get the link for the next round.
This round consists of three coding questions and one output-based question (medium level). You have to solve them within the given time and space complexity, with proper commenting, to be shortlisted.



Input: Linked List: 1 <-> 2 <-> 2 <-> 2 <-> 3
Output: Modified Linked List: 1 <-> 2 <-> 3
Explanation: We will delete the duplicate values ‘2’ present in the linked list.
Simply iterate the Linked List check for duplicate nodes and delete them.



A leaf is a node with no children.
For the given binary tree
Output: 2
The shortest path is from root node 1 to leaf node 2 which contains 2 nodes in the path. Hence, the minimum depth is 2.
By using BFS, I was able to solve this problem.
They were mainly focused on DSA, Trees and Linked list questions but were unfortunately rejected in Technical Rounds. They wanted less complexity and a Space Complexity Code. Try to reduce the complexity and write code with comments.



You don’t require to remove the leaf nodes. Just print the values in the required order.
The leaf nodes must be printed in a left to right order.



Input: ‘asteroids’ = [3,-2,4]
Output: [3, 4]
Explanation: The first asteroid will destroy the second asteroid. Hence, after the collision, the state of the asteroids will be [3,4].
You don’t need to print anything. Just implement the given function.
Using the stack data structure enabled me to solve this problem. Because I had already solved this problem, I was able to solve it again.

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?