Tip 1 : Keep your fundamentals very clear
Tip 2 : Do not forget to revise concepts you learned before
Tip 1 : If you have multiple projects, try to put those which have skills relevant to job description
Tip 2 : Apart from the main resume, keep one detailed resume for yourself which will have all the details explained
Timing - Late night
Virtual interview.
Interviewer was an experienced professional.
Here, for ‘X ’= 7, the output will be 1 3 7.
More than one sub-array can have a maximum sum, in that case, output any.
This was again at late night with a more senior professional.
Input: 'n' = 4,
'accounts' = [
["Rohan", "rohan123@gmail.com", "1279ro@gmail.com"],
["Rohit", "rohit101@yahoo.com", "hitman30487@gmail.com"],
["Rohan", "1279ro@gmail.com", "niemann01@gmail.com"],
["Rohan", "kaushik@outlook.com"],
]
Output: [
["Rohan", "rohan123@gmail.com", "1279ro@gmail.com", "niemann01@gmail.com"],
["Rohit", "rohit101@yahoo.com", "hitman30487@gmail.com"],
["Rohan", "kaushik@outlook.com"],
]
Explanation: The first and third "Rohan" are the same person as they have a shared email address, “1279ro@gmail.com”. The rest of the accounts are of different persons, as they don’t share any shared email addresses. So, we merge the first and third accounts.
Both the strings have only lowercase English alphabets.
There may be more than one correct solution, you have to return any one of the possible solutions.
This one was early morning with a female inteviewer.
Designing a system to handle live comments.
Tip 1 : Make sure you ask as many questions as you can in the beginning itself
Tip 2 : Do not jump for buzz words keep it simple.
Conflict Management, Team handling, Regarding location
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which collection class forbids duplicates?