There was an error while loading. Please reload this page.
1 parent 6ac3098 commit 5349c10Copy full SHA for 5349c10
1 file changed
challenge.js
@@ -10,4 +10,5 @@ function validParentheses(arr){
10
return isValid;
11
}
12
13
-console.log(validParentheses('((()))'.split('')));
+var parentheses = '((()))';
14
+console.log(validParentheses(parentheses.split('')));
0 commit comments