Skip to content

Commit 25bb00c

Browse files
committed
Added isFibonacci to coding challenges
1 parent ee4b27e commit 25bb00c

File tree

3 files changed

+85
-0
lines changed

3 files changed

+85
-0
lines changed

isFibonacci/isFibonacci.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
/***************************************************************
2+
* *
3+
* CodePrep.io *
4+
* *
5+
* Function: isFibonacci(num) *
6+
* Input: 1 number parameter *
7+
* Output: Boolean *
8+
* *
9+
* Output expectations: *
10+
* var myTest = isFibonacci(10); *
11+
* console.log(myTest); // false *
12+
* var myTest = isFibonacci(13); // true *
13+
* *
14+
* The Fibonacci sequence starts with 0 and 1 and the *
15+
* next number in the sequence is the sum of the previous *
16+
* two numbers. *
17+
* *
18+
* Write the code for the isFibonacci function that *
19+
* accepts a number input and returns true or false if *
20+
* that number is in the Fibonacci sequence. *
21+
* *
22+
**************************************************************/
23+
24+
var isFibonacci = function(num) {
25+
/* YOUR CODE GOES HERE */
26+
27+
}

isFibonacci/isFibonacci.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('isFibonacci', function() {
9+
it('should exist', function(){
10+
should.exist(isFibonacci);
11+
});
12+
13+
it('should be a function', function() {
14+
isFibonacci.should.be.a.Function;
15+
});
16+
17+
it('should return a Boolean', function() {
18+
var result = isFibonacci(5);
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 = isFibonacci();
25+
result.should.be.eql(false);
26+
});
27+
28+
it('should return true if input is 1', function(){
29+
var result = isFibonacci(1);
30+
result.should.be.eql(true);
31+
});
32+
33+
it('should have the right answer', function(){
34+
var result = isFibonacci(5);
35+
result.should.be.eql(true);
36+
});
37+
38+
it('should have the right answer', function(){
39+
var result = isFibonacci(6);
40+
result.should.be.eql(false);
41+
});
42+
43+
it('should handle large numbers', function() {
44+
var result = isFibonacci(233);
45+
result.should.be.eql(true);
46+
});
47+
48+
});

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