Skip to content

Commit 5349c10

Browse files
committed
Updated code
1 parent 6ac3098 commit 5349c10

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

challenge.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ function validParentheses(arr){
1010
return isValid;
1111
}
1212

13-
console.log(validParentheses('((()))'.split('')));
13+
var parentheses = '((()))';
14+
console.log(validParentheses(parentheses.split('')));

0 commit comments

Comments
 (0)