Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at least 2 good projects and you must know every bit of them.
Tip 1 : Have at least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
The interviewing process was tough.
I had 5 mins to introduce myself and go directly to the coding part.
Uber uses Code pair on phone interviews. Each round has two questions.
There must be no consecutive horizontal lines of equal height in the output skyline. For instance, [...,[2 3], [4 5], [7 5], [11 5], [12 7],...] is not acceptable; the three lines of height 5 should be merged into one in the final output.
As such: [..., [2 3], [4 5], [12 7],...].
Also, the buildings are sorted by a non-decreasing order.
For more clarification see sample case 1.
If N = 2 and prerequisite = [[1, 2]]. Then, there are a total of 2 courses you need to take. To take course 1 you need to finish course 2. So, it is possible to complete all courses.
Time is really really tight. I finished the coding near the end of the clock. Have to explain time and space complexity and design your own test case. Do not forget corner cases with inputs.
There are three occurrences of the word 'NINJA' in the following grid:
1) Given word will not be a single character.
2) If occurrences of the given word start from two different cells, then these two occurrences are considered to be different.
Consider the word 'XYX' to be searched in the string 'AXYXB'. Here, we find an occurrence of 'XYX' at index 2 going in the right direction, and another occurrence at index 4 going in the left direction.
Although these two words correspond to the same word, they will be considered as different occurrences.
This was a pretty intense round as I was grilled more on my System Design concepts but eventually, I was able to asnwers all the questions with some help from the interviewer.
How does Facebook Chat works ?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does the SQL function NOW() return?