Skip to content

Commit c0e6b00

Browse files
committed
Added balancedBrackets to coding challenges
1 parent c47b958 commit c0e6b00

File tree

3 files changed

+87
-0
lines changed

3 files changed

+87
-0
lines changed

balancedBrackets/balancedBrackets.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/***************************************************************
2+
* *
3+
* CodePrep.io *
4+
* *
5+
* Function: balancedBrackets(str) *
6+
* Input: 1 string parameter *
7+
* Output: boolean *
8+
* *
9+
* Output expectations: *
10+
* var myTest = balancedBrackets('({[]})'); *
11+
* console.log(myTest); // true *
12+
* var myTest = balancedBrackets('((){)}'); *
13+
* console.log(myTest); // false *
14+
* *
15+
* Write the code for the balancedBrackets function that *
16+
* accepts a string input and then returns true or *
17+
* false if that string has balanced brackets. Brackets *
18+
* can be (){}[]<> *
19+
* An open bracket cannot exist between another set of *
20+
* brackets that have been opened and closed. Ignore *
21+
* any input that is not a bracket. Return true if the *
22+
* brackets are balanced otherwise return false. *
23+
* *
24+
**************************************************************/
25+
26+
var balancedBrackets = function(str) {
27+
/* YOUR CODE GOES HERE */
28+
29+
};
+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
var should = require('should');
2+
var vm = require('vm');
3+
var fs = require('fs');
4+
var filename = __filename.replace(/\.test\.js$/, '.js');
5+
vm.runInThisContext(fs.readFileSync(filename), filename);
6+
7+
8+
describe('balancedBrackets', function() {
9+
it('should exist', function(){
10+
should.exist(balancedBrackets);
11+
});
12+
13+
it('should be a function', function() {
14+
balancedBrackets.should.be.a.Function;
15+
});
16+
17+
it('should return a boolean', function() {
18+
var result = balancedBrackets('hello');
19+
should.exist(result);
20+
result.should.be.an.instanceof(Boolean);
21+
});
22+
23+
it('should return false if no input provided', function() {
24+
var result = balancedBrackets();
25+
result.should.be.eql(false);
26+
});
27+
28+
it('should return false for a single bracket', function(){
29+
var result = balancedBrackets('(');
30+
result.should.be.eql(false);
31+
});
32+
33+
it('should ignore non bracket characters', function(){
34+
var result = balancedBrackets('helloWorld()');
35+
result.should.be.eql(true);
36+
});
37+
38+
it('should not allow nested brackets', function() {
39+
var result = balancedBrackets('{(})');
40+
result.should.be.eql(false);
41+
});
42+
43+
it('should handle a large number of brackets', function(){
44+
var result = balancedBrackets('(((((((((({{{{{}}}}}))))))))))');
45+
result.should.be.eql(true);
46+
});
47+
48+
});

balancedBrackets/package.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "CodePrep.io_coding_challenges",
3+
"author": "Jennifer Bland",
4+
"url": "http://www.codeprep.io",
5+
"version": "1.0.0",
6+
"description": "CodePrep.io presents coding challenges you might face when interviewing for a Full-Stack Developer position",
7+
"scripts": {
8+
"test": "node ../node_modules/mocha/bin/mocha ./*.test.js"
9+
}
10+
}

0 commit comments

Comments
 (0)