Skip to content

Commit 3256f98

Browse files
committed
Update Fibonacci solution, test to focus on arrays
Previous Fibonacci solution didn't use arrays, and since this is an array-heavy section, it seemed better to have that be the method here. Also, it accounts for entering 0 as an argument without having to add any extra code, which takes care of some currently open issues. Issues TheOdinProject#192 and TheOdinProject#236 are about the same thing. I added a test for that as well.
1 parent 3e530e3 commit 3256f98

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed
+7-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
const fibonacci = function (count) {
2-
if (count < 0) return "OOPS";
3-
if (count === 0) return 0;
4-
let a = 0;
5-
let b = 1;
6-
for (let i = 1; i < count; i++) {
7-
const temp = b;
8-
b = a + b;
9-
a = temp;
10-
}
11-
return b;
1+
const fibonacci = function(count) {
2+
if (count < 0) return "OOPS"
3+
const fibPart = [0, 1];
4+
for (let index = 1; index < count; index++) {
5+
fibPart.push(fibPart[index] + fibPart[index -1]);
6+
}
7+
return fibPart[count];
128
};
139

1410
module.exports = fibonacci;

10_fibonacci/solution/fibonacci-solution.spec.js

+3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ describe('fibonacci', () => {
1616
test('25th fibonacci number is 75025', () => {
1717
expect(fibonacci(25)).toBe(75025);
1818
});
19+
test('0th fibonacci number is o', () => {
20+
expect(fibonacci(0)).toBe(0);
21+
});
1922
test("doesn't accept negatives", () => {
2023
expect(fibonacci(-25)).toBe('OOPS');
2124
});

0 commit comments

Comments
 (0)