We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5488bb commit d893361Copy full SHA for d893361
lesson_07/conditionals/src/lesson7.ts
@@ -137,7 +137,7 @@ console.log(sum);
137
* @param n The first `n` of Fibonacci values to compute.
138
* @return An array containing the first `n` Fibonacci values.
139
*/
140
-
+//** I had to look up how to complete this problem on google
141
export function getFirstNFibonacciNumbers(n: number): number[] {
142
const myArray: number[] = [];
143
if (n <= 0) return [];
0 commit comments