Uber interview experience Real time questions & tips from candidates to crack your interview

SDE - 2

Uber
upvote
share-icon
2 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Journey
I had applied to Uber before but never got a callback until I was referred by someone from Uber. Uber recruiters scheduled the interviews, and the rounds took place like at any other company. My first two rounds were technical, based on problem-solving and data structures. After these two rounds, I received an email stating that they would not be moving forward with the interview process. Feedback: Practice is very much required before you apply to Uber, as they are very particular about problem-solving and data structures.
Application story
I got a referral from a person working at Uber. You can easily reach out to people at Uber via LinkedIn.
Why selected/rejected for the role?
Rejected due to lack of preparation and not providing an optimized solution. Better practice provides better results. Uber interviews are competitive but not impossible. It takes lots of practice before you apply to companies like these, including MAANG or other fast-paced workplaces.
Preparation
Duration: 3 months
Topics: DS: Arrays, trees, Heap, Lists, Graphs Algo: DP, Graph and tree traversal, sliding window, System Design both LLD and HLD.
Tip
Tip

Tip 1: Practice coding questions
Tip 2: Prepare for System Design
Tip 3: Problem Solving is a must

Application process
Where: Other
Eligibility: NA
Resume Tip
Resume tip

Tip 1: Highlight optimizations in terms of numbers, e.g., increased productivity by 50x or decreased API latency by 80%. 

Tip 2: Highlight only core projects that you want the interviewer to ask about. The interviewer is skilled and has basic knowledge of most technologies, so do not overstate your skills. Keep it limited.

Interview rounds

01
Round
Hard
Telephonic
Duration60 Minutes
Interview date21 Dec 2022
Coding problem1

1. Merge Intervals

Moderate
20m average time
80% success
0/80
Asked in companies
GoogleInnovaccerFacebook

You are given N number of intervals, where each interval contains two integers denoting the start time and the end time for the interval.

The task is to merge all the overlapping intervals and return the list of merged intervals sorted by increasing order of their start time.

Two intervals [A,B] and [C,D] are said to be overlapping with each other if there is at least one integer that is covered by both of them.

For example:

For the given 5 intervals - [1, 4], [3, 5], [6, 8], [10, 12], [8, 9].

Since intervals [1, 4] and [3, 5] overlap with each other, we will merge them into a single interval as [1, 5].

Similarly, [6, 8] and [8, 9] overlap, merge them into [6,9].

Interval [10, 12] does not overlap with any interval.

Final List after merging overlapping intervals: [1, 5], [6, 9], [10, 12].
Try solving now
02
Round
Easy
Telephonic
Duration60 Minutes
Interview date23 Dec 2022
Coding problem1

1. Trapping Rain Water

Moderate
15m average time
80% success
0/80
Asked in companies
SalesforceAmazonOYO

You have been given a long type array/list 'arr’ of size 'n’.


It represents an elevation map wherein 'arr[i]’ denotes the elevation of the 'ith' bar.



Note :
The width of each bar is the same and is equal to 1.
Example:
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].

Output: 10

Explanation: Refer to the image for better comprehension:

Alt Text

Note :
You don't need to print anything. It has already been taken care of. Just implement the given function.
Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

Which SQL keyword removes duplicate records from a result set?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 2
4 rounds | 5 problems
Interviewed by Uber
0 views
0 comments
0 upvotes
company logo
SDE - 2
3 rounds | 5 problems
Interviewed by Uber
4396 views
0 comments
0 upvotes
company logo
SDE - 2
2 rounds | 2 problems
Interviewed by Uber
1546 views
0 comments
0 upvotes
company logo
SDE - 2
3 rounds | 4 problems
Interviewed by Uber
1552 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 2
5 rounds | 12 problems
Interviewed by Walmart
25139 views
8 comments
0 upvotes
company logo
SDE - 2
3 rounds | 5 problems
Interviewed by Amazon
5505 views
0 comments
0 upvotes
company logo
SDE - 2
6 rounds | 8 problems
Interviewed by Amazon
3958 views
0 comments
0 upvotes