Skip to content

Commit 633469b

Browse files
committed
Added evenOddRepeat to coding challenges.
1 parent 4c8a219 commit 633469b

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

evenOddRepeat/evenOddRepeat.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/***************************************************************
2+
* *
3+
* CodePrep.io *
4+
* *
5+
* Function: evenOddRepeat(str) *
6+
* Input: 1 string parameter *
7+
* Output: String *
8+
* *
9+
* Output expectations: *
10+
* var myTest = evenOddRepeat('12312441'); // '123x12y4y41 *
11+
* console.log(myTest); // a *
12+
* *
13+
* *
14+
* Write the code for the evenOddRepeat function that *
15+
* accepts a string as input and inserts the letter x *
16+
* between two odd numbers and the letter y between two *
17+
* even numbers.
18+
* *
19+
**************************************************************/
20+
21+
var evenOddRepeat = function(num) {
22+
/* YOUR CODE GOES HERE */
23+
24+
}

evenOddRepeat/evenOddRepeat.test.js

+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('evenOddRepeat', function() {
9+
it('should exist', function(){
10+
should.exist(evenOddRepeat);
11+
});
12+
13+
it('should be a function', function() {
14+
evenOddRepeat.should.be.a.Function;
15+
});
16+
17+
it('should return a String', function() {
18+
var result = evenOddRepeat('123');
19+
should.exist(result);
20+
result.should.be.an.instanceof(String);
21+
});
22+
23+
it('should return an empty string if no input provided', function() {
24+
var result = evenOddRepeat();
25+
result.should.be.eql('');
26+
});
27+
28+
it('should return a single character if only one number inputted', function(){
29+
var result = evenOddRepeat('1');
30+
result.should.be.eql('1');
31+
});
32+
33+
it('should have the right answer', function(){
34+
var result = evenOddRepeat('12333224');
35+
result.should.be.eql('123x3x32y2y4');
36+
});
37+
38+
it('should handle long numbers with no repeats', function() {
39+
var result = evenOddRepeat('123456789');
40+
result.should.be.eql('123456789');
41+
});
42+
43+
it('should handle repeating numbers', function() {
44+
var result = evenOddRepeat('1111222');
45+
result.should.be.eql('1x1x1x12y2y2');
46+
});
47+
48+
});

evenOddRepeat/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)