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

SDE - 1

Uber
upvote
share-icon
1 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Journey
When I received the mail for the Uber OA assessment, I started preparing with a targeted approach immediately. I began by polishing my basics and regularly solving problems from Striver's SDE Sheet, which helped me strengthen my problem-solving foundation and revise key data structures and algorithms concepts. In parallel, I solved the Coding Ninjas Uber bundle and practiced Python-based and frequently asked interview questions.
Application story
I came across a LinkedIn post inviting applications for the Uber Experience opportunity. The post included a link to apply, and I submitted my application through the provided form. Shortly after, I received communication from the Uber team regarding the next steps in the process.
Why selected/rejected for the role?
I was not selected for the role. During the Online Assessment, I was able to fully solve one question and partially solve another out of the three given. While I demonstrated a good understanding of problem-solving and coding fundamentals, I believe the competition was strong, and my performance may not have met the benchmark Uber was looking for at this stage.
Preparation
Duration: 3 months
Topics: DSA , OOPS , Graphs , Dynamic Programming, Trees
Tip
Tip

Tip 1: Practice 5 questions daily.
Tip 2: Follow PYQs.
Tip 3: Set a time limit and solve within that time.

Application process
Where: Linkedin
Eligibility: NA, (Salary Package - 25 LPA)
Resume Tip
Resume tip

Tip 1: Use a two-column resume.
Tip 2: Add company-domain and interest-specific projects.

Interview rounds

01
Round
Hard
Online Coding Test
Duration90 minutes
Interview date15 Jun 2025
Coding problem2

1. Largest Plus Sign

Hard
0/120
Asked in company
Uber

You are given an integer n, which defines an n x n binary grid. Initially, all values in the grid are 1s. You are also given an array mines, where each element mines[i] = [row, col] indicates that the cell grid[row][col] should be a 0.


Your task is to find the order of the largest axis-aligned plus sign of 1s contained in the final grid. If no plus sign of 1s exists (i.e., the grid contains no 1s), you should return 0.


An axis-aligned plus sign of order k is defined by:

  A center cell grid[r][c] which must be 1.
  Four "arms" of 1s extending up, down, left, and right from the center.
  The length of each arm must be at least k-1.


This means the order k is determined by the shortest arm extending from the center. For a plus sign centered at (r, c), the order is 1 + min(up, down, left, right), where up is the number of consecutive 1s above the center, down is the number below, and so on.


Problem approach

Use DP.

Try solving now

2. Longest Valid Parentheses

Moderate
10m average time
90% success
0/80
Asked in companies
Goldman SachsDunzoAmazon

You are given a string ‘S’ containing only the characters ‘)’ and ‘(‘. You need to find the length of the longest valid i.e. well-formed parentheses substring.

For example:
Let the given string be “(()())((”.

Here the valid parentheses substrings are: “()”, “()” and “(()())”. Out of these the longest valid string is “(()())” which has a length 6.
Problem approach

Left-to-Right Scan
Count the left and right parentheses.
When they match → update the maximum length.
When right > left → reset both counters.

Right-to-Left Scan
Repeat, but this time reset when left > right.

The maximum value found is the answer.

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

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
1 rounds | 3 problems
Interviewed by Uber
0 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 4 problems
Interviewed by Uber
1332 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by Uber
959 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by Uber
5119 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57824 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes