Skip to content

Commit 3264a41

Browse files
Update backtracking/generate_parentheses.cpp
Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent e1fafd0 commit 3264a41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backtracking/generate_parentheses.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class generate_parentheses {
4343
* @param open number of open parentheses
4444
*/
4545

46-
void backtracking::generate_parentheses::makeStrings(std::string str, int n,
46+
void generate_parentheses::makeStrings(std::string str, int n,
4747
int closed, int open) {
4848
if (closed > open) // We can never have more closed than open
4949
return;

0 commit comments

Comments
 (0)