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

SDE - 1

Dunzo
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: Data Structures & Algorithms, OS, DBMS, Computer Networks, OOPS
Tip
Tip

Tip 1 : Get a good grasp of whatever topic you are preparing, and make sure to solve a good amount of problems of a particular topic.
Tip 2 : Consistency beats talent. It is an underrated skill yet so hard to accomplish. Be consistent and honest with yourself.

Application process
Where: Company Website
Eligibility: 1 year experience
Resume Tip
Resume tip

Tip 1 : Use a good template.
Tip 2 : Highlight the key skills and achievments.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date20 Jun 2022
Coding problem1

1. Nodes In Complete Binary Tree

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

You are given the root of a complete binary tree, you need to calculate the number of nodes in the given complete binary tree.

A complete binary tree is a tree in which all the levels are completely filled except the last level. Nodes in the last level are as left as possible.

For Example:

In the above complete binary tree, all the levels are filled except for the last. In the last level, all the nodes in the last level are as far left as possible.
Problem approach

Bruteforce is easy. Binary search is optimal approach to solve this.

Try solving now
02
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date21 Jun 2022
Coding problem1

1. Distance Of Nearest Cell Having 1 In A Binary Matrix

Moderate
35m average time
65% success
0/80
Asked in companies
FacebookDunzoCIS - Cyber Infrastructure

You have been given a binary matrix 'MAT' containing only 0’s and 1’s of size N x M. You need to find the distance of the nearest cell having 1 in the matrix for each cell.

The distance is calculated as |i1 – i2| + |j1 – j2|, where i1, j1 are the coordinates of the current cell and i2, j2 are the coordinates of the nearest cell having value 1.
Note :
You can only move in four directions which are : Up, Down, Left and Right.
For example :
If N = 3, M = 4

and mat[ ][ ] = { 0, 0, 0, 1,
                  0, 0, 1, 1,
                  0, 1, 1, 0 }

then the output matrix will be

3  2  1  0
2  1  0  0
1  0  0  1
Problem approach

Multipoint BFS is a good approach to solve this problem.

Try solving now
03
Round
Easy
HR Round
Duration60 minutes
Interview date24 Jun 2022
Coding problem1

1. Basic HR Questions

Introduce yourself

Why should we hire you?

Explain the idea behind the selection of tech stacks used in your technology.

What was your role in the project making team?

 

Problem approach

Tip 1 : Be informed about your resume.
Tip 2 : If you are a working professional, make sure you know everything about your job.

Here's your problem of the day

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

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by Dunzo
4719 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by Dunzo
781 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Dunzo
726 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 5 problems
Interviewed by Dunzo
807 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
115097 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
58238 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
35147 views
7 comments
0 upvotes