Your Submissions
You haven't submitted any code for this challenge yet. Solve the problem by passing all the test cases, and your submissions will appear here.
xxxxxxxxxx38
var assert = require('assert');function remove_invalid_parenthesis(s) { return;}try { assert.deepEqual(remove_invalid_parenthesis("()()"), ["()()"]); console.log('PASSED: ' + "assert.equal(remove_invalid_parenthesis('()()'), ['()()']");} catch (err) { console.log(err);}try { assert.deepEqual(remove_invalid_parenthesis("()())()"), ["(())()", "()()()"]); console.log('PASSED: ' + "assert.equal(remove_invalid_parenthesis('()())()')), ['(())()','()()()'])");} catch (err) { console.log(err);}try { assert.deepEqual(remove_invalid_parenthesis("(a)())()"), ["(a())()", "(a)()()"]); console.log('PASSED: ' + "assert.equal(remove_invalid_parenthesis('(a)())()'), ['(a())()','(a)()()'])");} catch (err) {OUTPUT
Results will appear here.