Skip to content

Commit ee4b27e

Browse files
committed
Added sumNumbers to coding challenges.
1 parent 3750713 commit ee4b27e

File tree

3 files changed

+75
-0
lines changed

3 files changed

+75
-0
lines changed

sumNumbers/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+
}

sumNumbers/sumNumbers.js

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/***************************************************************
2+
* *
3+
* CodePrep.io *
4+
* *
5+
* Function: sumNumbers(num) *
6+
* Input: 1 number parameter *
7+
* Output: number *
8+
* *
9+
* Output expectations: *
10+
* var myTest = sumNumbers(10); *
11+
* console.log(myTest); // 55 *
12+
* *
13+
* Write the code for the sumNumbers function that *
14+
* accepts a number input and then sums the total for *
15+
* all numbers from 1 to num. Output the total *
16+
* *
17+
**************************************************************/
18+
19+
var sumNumbers = function(num) {
20+
/* YOUR CODE GOES HERE */
21+
22+
};

sumNumbers/sumNumbers.test.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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('sumNumbers', function() {
9+
it('should exist', function(){
10+
should.exist(sumNumbers);
11+
});
12+
13+
it('should be a function', function() {
14+
sumNumbers.should.be.a.Function;
15+
});
16+
17+
it('should return a Number', function() {
18+
var result = sumNumbers(5);
19+
should.exist(result);
20+
result.should.be.an.instanceof(Number);
21+
});
22+
23+
it('should return zero if no input provided', function() {
24+
var result = sumNumbers();
25+
result.should.be.eql(0);
26+
});
27+
28+
it('should return one if input is 1', function(){
29+
var result = sumNumbers(1);
30+
result.should.be.eql(1);
31+
});
32+
33+
it('should have the right answer', function(){
34+
var result = sumNumbers(5);
35+
result.should.be.eql(15);
36+
});
37+
38+
it('should handle large numbers', function() {
39+
var result = sumNumbers(15);
40+
result.should.be.eql(120);
41+
});
42+
43+
});

0 commit comments

Comments
 (0)