Skip to content

Commit d893361

Browse files
committed
chore: fixed notes for Kimberlee's lesson_07
conditionals- added source
1 parent e5488bb commit d893361

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lesson_07/conditionals/src/lesson7.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ console.log(sum);
137137
* @param n The first `n` of Fibonacci values to compute.
138138
* @return An array containing the first `n` Fibonacci values.
139139
*/
140-
140+
//** I had to look up how to complete this problem on google
141141
export function getFirstNFibonacciNumbers(n: number): number[] {
142142
const myArray: number[] = [];
143143
if (n <= 0) return [];

0 commit comments

Comments
 (0)