Question: To be done in C++ or Java, doesn't matter. Write a RECURSIVE fucntion findParen(string str) where str contains a single pair of parentheses, returns a
To be done in C++ or Java, doesn't matter.
Write a RECURSIVE fucntion findParen(string str) where str contains a single pair of parentheses, returns a new string made of only the parentheses and whatever those parentheses contain.
Pseudocode Example: findParen("abc(ghj)789") => "(ghj)" findParen("(x)7") => "(x)" findParen("4agh(y)") => "(y)"
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
