LeetCode-Solutions icon indicating copy to clipboard operation
LeetCode-Solutions copied to clipboard

Added 22. Generate Parentheses (C++)

Open tanmay-j1 opened this issue 4 years ago • 0 comments

Pull Request Template

Description

The solution requires a simple recursive solution with a concrete base case. Link: https://leetcode.com/problems/generate-parentheses/

Put check marks:

Have you made changes in README file ?

  • [x] Added problem & solution under correct topic.
  • [x] Specified Space & Time complexity.
  • [x] Specified difficulty level, tag & Note(if any).

How Has This Been Tested?

Please describe the tests that you ran to verify your changes. Please also note any relevant details for your test configuration.

  • [x] n = 1
  • [x] n = 3

Make sure all below guidelines are followed else PR will get Reject:

  • [x] My code follows the style guidelines of this project
  • [x] I have performed a self-review of my own code
  • [x] I have commented my code so that it is easy to understand
  • [x] I have made corresponding changes to the documentation
  • [x] My changes generate no new warnings
  • [x] Any dependent changes have been merged and published in downstream modules

tanmay-j1 avatar Oct 03 '21 13:10 tanmay-j1