Myntra pvt ltd interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Myntra pvt ltd
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structures, system design, LLD, OS, Networking, SQL
Tip
Tip

Tip 1 : Practice DS Algo problems from leetcode
Tip 2 : Practice System Design Problems

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

Tip 1 : Focus on previous work-ex
Tip 2 : Focus on projects

Interview rounds

01
Round
Medium
Online Coding Test
Duration60 mins
Interview date22 Sep 2021
Coding problem2

1. Right View

Moderate
35m average time
65% success
0/80
Asked in companies
AdobeSAP LabsRazorpay

You have been given a Binary Tree of integers.

Your task is to print the Right view of it.

The right view of a Binary Tree is a set of nodes visible when the tree is viewed from the Right side and the nodes are printed from top to bottom order.

Problem approach

The problem can be solved using simple recursive traversal. We can keep track of level of a node by passing a parameter to all recursive calls. The idea is to keep track of maximum level also. And traverse the tree in a manner that right subtree is visited before left subtree. Whenever we see a node whose level is more than maximum level so far, we print the node because this is the last node in its level

Try solving now

2. Find K-th smallest Element in BST

Easy
15m average time
85% success
0/40
Asked in companies
SAP LabsGoldman SachsVisa

Given a binary search tree and an integer ‘K’. Your task is to find the ‘K-th’ smallest element in the given BST( binary search tree).

BST ( binary search tree) -

If all the smallest nodes on the left side and all the greater nodes on the right side of the node current node.

Example -

alt text

Order of elements in increasing order in the given BST is - { 2, 3, 4, 5, 6, 7, 8, 10 }

Suppose given ‘K = 3’ then 3rd smallest element is ‘4’.

Suppose given ‘K = 8’ then 8th smallest element is ‘10’.

Note:
1. You are not required to print the output explicitly, it has already been taken care of. Just implement the function and return the ‘K-th’ smallest element of BST.
2. You don’t need to return ‘K-th’ smallest node, return just value of that node. 
3. If ‘K-th’ smallest element is not present in BST then return -1.
Problem approach

The Inorder Traversal of a BST traverses the nodes in increasing order. So the idea is to traverse the tree in Inorder. While traversing, keep track of the count of the nodes visited. If the count becomes k, print the node.

Try solving now
02
Round
Medium
Coding Test - Pen and paper
Duration40 mins
Interview date30 Sep 2021
Coding problem1

System Design Problems

1. Design question

Design your own cab service

Problem approach

Tip 1: Prepare them from scratch using Block level diagrams
Tip 2: Use data structures and API

03
Round
Easy
HR Round
Duration30 mins
Interview date1 Oct 2021
Coding problem1

Questions on Previous work ex

1. Basic HR Questions

What are your strengths and weaknesses?

Where do you see yourself in 5 years?

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
Software Engineer
4 rounds | 8 problems
Interviewed by Myntra pvt ltd
3320 views
1 comments
0 upvotes
Software Engineer
3 rounds | 3 problems
Interviewed by Myntra pvt ltd
3110 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Myntra pvt ltd
2260 views
0 comments
0 upvotes
Software Engineer
4 rounds | 7 problems
Interviewed by Myntra pvt ltd
1162 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7873 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
9973 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4310 views
1 comments
0 upvotes