Problem 47838. Count the ways pairs of parentheses can be matched correctly
Several problems in Cody deal with the practical problem of checking whether parentheses are correctly matched (e.g., 80, 465, 1303, 2653). In this problem you are asked to count the ways a given number of pairs of parentheses can be matched correctly in an expression. For example, three pairs can be matched in five ways:
()()(), (())(), (()()), ((())), ()(())
Write a function that takes the number of pairs and determines the number of ways the parentheses can be matched correctly.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers7
Suggested Problems
-
Check if number exists in vector
12993 Solvers
-
618 Solvers
-
Edges of a n-dimensional Hypercube
84 Solvers
-
Triangular matrices in 3D array
138 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
388 Solvers
More from this Author309
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!