Skip to content

Commit 4c8a219

Browse files
committed
Added first Duplicate to Coding Challenges.
1 parent 25bb00c commit 4c8a219

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed

firstDuplicate/firstDuplicate.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/***************************************************************
2+
* *
3+
* CodePrep.io *
4+
* *
5+
* Function: firstDuplicate(str) *
6+
* Input: 1 string parameter *
7+
* Output: String *
8+
* *
9+
* Output expectations: *
10+
* var myTest = firstDuplicate('abcdefabcdeg'); *
11+
* console.log(myTest); // a *
12+
* *
13+
* *
14+
* Write the code for the firstDuplicate function that *
15+
* accepts a string as input and returns the first *
16+
* character that is duplicated. *
17+
* *
18+
**************************************************************/
19+
20+
var firstDuplicate = function(str) {
21+
/* YOUR CODE GOES HERE */
22+
23+
}

firstDuplicate/firstDuplicate.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('firstDuplicate', function() {
9+
it('should exist', function(){
10+
should.exist(firstDuplicate);
11+
});
12+
13+
it('should be a function', function() {
14+
firstDuplicate.should.be.a.Function;
15+
});
16+
17+
it('should return a String', function() {
18+
var result = firstDuplicate('aa');
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 = firstDuplicate();
25+
result.should.be.eql('');
26+
});
27+
28+
it('should return an empty string if only one character inputted', function(){
29+
var result = firstDuplicate('a');
30+
result.should.be.eql('');
31+
});
32+
33+
it('should have the right answer', function(){
34+
var result = firstDuplicate('abcdefabcdef');
35+
result.should.be.eql('a');
36+
});
37+
38+
it('should handle upper and lower case letters', function(){
39+
var result = firstDuplicate('ABCDEFabcdef');
40+
result.should.be.eql('a');
41+
});
42+
43+
it('should handle long strings', function() {
44+
var result = firstDuplicate('abcdefghijklmnopqrstuvwxyza');
45+
result.should.be.eql('a');
46+
});
47+
48+
});

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