Question: =======================================Javascript======================================= with javascript You are designing a compiler for a C++ program and need to check that braces in any given file are balanced Braces
=======================================Javascript=======================================
with javascript
You are designing a compiler for a C++ program and need to check that braces in any given file are balanced Braces in a string are considered to be balanced if the following criteria are met: .All braces must be closed. Braces come in pairs of the form 0, and [. The left brace opens the pair, and the right one closes it. . In any set of nested braces, the braces between any pair must be closed For example, I is a valid grouping of braces but [ is not. Function Description Complete the function braces in the editor below. The function must return an array of strings where the string at each index idenotes whether or not the braces were balanced in a values The array should consist of strings "YES" or "NO" aligned with their indexes in values braces has the following parameter(s): valuesfvalueso...valuesn-l: an array of strings to analyze Constraints 1sns 15 +1 s length of valuesw s 100 It is guaranteed that each valuesi consists of) .. , and I only Input Format For Custom Testing Sample Case 0 Sample Input For Custom Testing Sample Output YES NO Explanation valueso fHmeets the criteria for a balanced string, so index 0 in our return array should contain the string YES values: ( contains unmatched braces between a matched pair in the substrings [) , and [, so index 1 in our return array should contain the string NO
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
