Tip 1: Be consistent in solving DSA questions daily (aim for 500 total).
Tip 2: Try to solve a question before jumping to the solution.
Tip 3: To learn development, don’t just watch tutorials—build as many projects as you can.
Tip 1: Focus on good projects, excluding basic clone apps or to-do lists.
Tip 2: Participate in hackathons or contribute to open-source projects.
There was 30 minutes login window. All 3 questions have a medium level. The camera and mic were on with the screen shared.


1. Every time you reach a cell, you collect all the gold present in that cell.
2. You can go one step left, right, up, or down from your current cell’s position.
3. You can’t visit the cell which you have already visited.
4. You can’t visit a cell with 0 gold.
5. You can choose any cell to start and stop collecting gold.
Tip 1: Read the question properly.
Tip 2: Prepare DP and do BFS.
Given a list of processes where each value represents the memory consumption of a process and a variable mmm represents the number of processes to be removed, we need to delete mmm contiguous processes from the list and return the minimum amount of main memory used by the remaining processes.



Given an array arr[] of size N and an integer X, the task is to find the number of ordered pairs (i, j) such that i != j and X is the concatenation of the numbers arr[i] and arr[j]
Tip 1: Read the question thoroughly
Tip 2: Try to apply a hash map
Two DSA questions were asked by the interviewer and after that, some questions on indexing and deadlock were asked.



Given a binary 2D matrix, find the number of islands. A group of connected 1s forms an island.
Tip 1: Listen to the question carefully.
Tip 2: Ask for the constraints and limits.
Tip 3: Speak what you think.



Given an array of n integers. Count the total number of sub-arrays having total distinct elements, the same as that of the total distinct elements of the original array.
Tip 1: Try brute force first.
Tip 2: Then try to optimise the solution using a hashmap.
Asked about the types of indexing and how indexing can be applied. (Learn)
Tip 1: Have a basic knowledge of DBMS.
Asked about basic HR questions and projects in my resume.
Where do you see yourself in 5 years?
Tip 1: Be honest
What tech stack did you use in your project?
Tip 1: Have a good knowledge of your project.
What are the challenges did you face while making your project?
Tip 1: Prepare all these types of questions before giving the HR round.

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