-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trapping Rainwater Problem #3204
Comments
Hey, I would like to take this issue up. |
@ZoranPandovski I would like do this in python please assign it to me. Thank you! |
Just make a PR, multiple people can work on this 🙌 |
Hi @ZoranPandovski, Have added a solution in Java for the above problem - #3223. Please review it whenever possible. I got this folder from Hacktoberfest2022, so really excited about that. :) In case this needs to be assigned, kindly add me in as well on it. |
pls have a look at #3217. i already updated it with both Moore's Voting Algorithm as well as Trapping Rainwater Problem. |
I would like to do this in golang. |
Shall i try this to implement an explaination and simple code file |
This is a(n):
Details:
Trapping Rainwater Problem states that we need to find the maximum units of rainwater that can be stored between the bars of different sizes where the sizes of bars are given as an input.
The code is as follows: -
Time Complexity: - O(n)
Space Complexity: - O(n)
The text was updated successfully, but these errors were encountered: