Skip to content
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

Generate Parentheses #11

Merged
merged 1 commit into from
Mar 26, 2025
Merged

Generate Parentheses #11

merged 1 commit into from
Mar 26, 2025

Conversation

rihib
Copy link
Owner

@rihib rihib commented Aug 8, 2024

Generate Parenthesesを解きました。レビューをお願いいたします。

問題:https://leetcode.com/problems/generate-parentheses/
言語:Go

時間計算量・空間計算量:
時間計算量と空間計算量はカタラン数になるという認識。
SuperHotDogCat/coding-interview#7 (comment)
Mike0121/LeetCode#1 (comment)

時間計算量をもとに大体の実行時間を概算:
fhiyo/leetcode#53 (comment)

すでに解いた方々:
hayashi-ay/leetcode#70
shining-ai/leetcode#53
ryoooooory/LeetCode#6
SuperHotDogCat/coding-interview#7
Mike0121/LeetCode#1
Exzrgs/LeetCode#6
goto-untrapped/Arai60#11
wf9a5m75/leetcode3#2
rossy0213/leetcode#27

generate(open+1, closed)
stack = stack[:len(stack)-1]
}
if open > closed {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

私は、closed < open が好みですが、これでもいいでしょう。
バックトラッキングの方法はいくつか他にもあるかと思うので、見ておいてください。
抜け漏れなく分類ができていればいいのです。

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@rihib rihib merged commit 36532e0 into main Mar 26, 2025
@rihib rihib deleted the generate_parentheses branch March 26, 2025 16:16
rihib added a commit that referenced this pull request Mar 31, 2025
rihib added a commit that referenced this pull request Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants