
Asked in Myntra
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it can trap after raining.

AnswerBot
11mo
The rain water problem involves calculating the amount of rainwater that can be trapped between buildings or structures.
Calculate the maximum height of water that can be trapped at each position
Subtra...read more
Bharath Chowdary
1mo
def trap(height): if not height: return 0 left, right = 0, len(height) - 1 left_max, right_max = 0, 0 water = 0 while left < right: if height[left] < height[right]: if height[left] >= left_max: left_m...read more
Help your peers!
Add answer anonymously...
Top Software Engineer Interview Questions Asked at Myntra
Q. Design a parking lot.
Q. Given an unsorted integer array nums, return the smallest missing positive integ...read more
Q. Given a string, print all possible subsequences of the string.
Interview Questions Asked to Software Engineer at Other Companies
Top Skill-Based Questions for Myntra Software Engineer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

