Challenge 2: Balance Parenthesis
Given an array that contains opening and closing brackets, check whether or not the brackets are balanced in the array.
We'll cover the following...
We'll cover the following...
Problem Statement
Implement a function that takes an array testVariable
containing opening (
and closing parenthesis )
and determines whether or not the brackets in the array are balanced. The function also takes startIndex = 0
and ...