Skip to content

Commit 9cfeec6

Browse files
authored
chore: deleted notes and comments
1 parent 72b623b commit 9cfeec6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lesson_07/conditionals/src/lesson7.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export function compareStrings(a: string, b: string): number {
3232
} else {
3333
return 0;
3434
}
35-
// TODO(you): Finish this method.
3635
}
3736

3837
/**
@@ -84,7 +83,6 @@ export function computeFactorial(n: number): number {
8483
}
8584
return n;
8685
}
87-
/* 4! = 4 x 3 x 2 x 1 = 24*/
8886
/**
8987
* Adds all of the provided values and returns the sum.
9088
*
@@ -141,7 +139,6 @@ export function binarySearch(
141139

142140
const pivotIndex = Math.floor((start + end) / 2); // The index in the middle of the array.
143141

144-
// TODO(you): Finish implementing this algorithm
145142

146143
if (values[pivotIndex] == value) {
147144
return pivotIndex;

0 commit comments

Comments
 (0)