Tip 1 : Practice Atleast 300 questions.
Tip 2 : Do at least 2 projects.
Tip 1: Have Atleast 2 projects on the resume.
Tip 2: Make the projects from scratch and do not put false things on the resume
This round was conducted in the evening.



Two islands are considered to be the same if and only if one island is equal to another(not rotated or reflected) i.e if we can translate one island on another without rotating or reflecting then it would be considered as the same islands.
1 1 0
0 0 1
0 0 1
In this example, we have two islands and they would be considered as distinct islands as we can not translate them on one another even if they have the same no of 1's.
1 1 0 0 0
1 1 0 0 0
0 0 0 1 1
0 0 0 1 1
In this example, we have two islands and they are the same as we can translate one island onto another island, so our answer should be 1.
This problem is an extension of the problem Number of Islands.
I solved the question to get all the test cases passed.



It is a standard DP problem, we had to pass all the test cases
This round was in the afternoon.
There was one interviewer.
Create a Triangle and Rectangle class in oops and find the area of both the surfaces using oops concepts.
The problem was to check the understanding of the OOPs concept.



1. Delete a character
2. Replace a character with another one
3. Insert a character
Strings don't contain spaces in between.
Started from the basic recursive approach and then optimised the solution.
The round was in the evening
Questions were mainly asked on some given situations and on personal life and family occupation.
Tip 1:Be confident
Tip 2:Tell whatever you would do for that particular situation.

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?