There was an error while loading. Please reload this page.
1 parent 8abf0c5 commit 0b66f67Copy full SHA for 0b66f67
Dynamic-Programming/FindMonthCalendar.js
@@ -53,7 +53,7 @@ class Month {
53
54
isLeapYear (year) {
55
if (((year % 400) === 0) || (((year % 100) !== 0) && ((year % 4) === 0))) return true
56
- else return false
+ return false
57
}
58
59
isGreater (startDate, endDate) {
0 commit comments