Question
CANNOT USE ARRAYS You are allowed to use the following from the Java API: class String length charAt class StringBuilder length charAt append toString class
CANNOT USE ARRAYS You are allowed to use the following from the Java API: class String length charAt class StringBuilder length charAt append toString class Character any method
editOut should take a String as input and output a String. You may assume the input String has properly matched parentheses. The behavior for improperly matched parentheses is up to you, but the method should not crash. The output String should be identical to the input String except that any text inside a pair of matched parentheses is removed, including the parentheses. In addition, if there is a pair of matched parentheses inside the removed text, that text should be retained (though the parentheses should be removed). If there are any matched parentheses inside the retained text, that text should be removed, and so on. editOut("this is an (unusual (example)) of (editing out and (retaining)) text")should return "this is an example of retaining text" editOut("this is (another) (example) showing (((((removal))))) -( and )- ((((retention))))") should return "this is showing -- retention"
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started