CodeHarborHub / codeharborhub.github.io

Welcome to CodeHarborHub – Our mission at CodeHarborHub is clear: to provide accessible and comprehensive educational resources to learners of all levels, from beginners to advanced professionals.
https://codeharborhub.github.io/
MIT License
60 stars 136 forks source link

[Documentation Update]: LeetCode solution 0150-Reverse Polish Notation #1263

Closed katarianikita2003 closed 1 week ago

katarianikita2003 commented 2 weeks ago

Is there an existing issue for this?

Issue Description

implement the evaluation of Reverse Polish Notation (RPN) in Java, you can use a stack to manage the operands. The idea is to iterate through the array of tokens and, for each token:

If it's a number, push it onto the stack. If it's an operator, pop the required number of operands from the stack, perform the operation, and push the result back onto the stack.

Suggested Change

Add solution to the problem 0150-Reverse Polish Notation

Rationale

No response

Urgency

High

Acknowledgements

github-actions[bot] commented 2 weeks ago

Hi @katarianikita2003! Thanks for opening this issue. We appreciate your contribution to this open-source project. Your input is valuable and we aim to respond or assign your issue as soon as possible. Thanks again!

katarianikita2003 commented 2 weeks ago

@Ajay-Dhangar , please assign it to me

github-actions[bot] commented 1 week ago

Hello @katarianikita2003! Your issue #1263 has been closed. Thank you for your contribution!