Skip to content

Commit a16b1b3

Browse files
committed
feat: adds lesson_07/nileajck-hw
1 parent 96e5125 commit a16b1b3

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
@@ -67,7 +67,7 @@ export function convertGpaToLetterGrade(gpa: number): string {
6767
return "D+";
6868
} else if (gpa <= 1.29 && gpa >= 1.0) {
6969
return "D";
70-
} else {
70+
} else if (gpa < 1.00 && gpa {
7171
return "F";
7272
}
7373
}

0 commit comments

Comments
 (0)