Skip to content

Commit

Permalink
Update APCalendar.java
Browse files Browse the repository at this point in the history
  • Loading branch information
chyeung1 authored Apr 30, 2024
1 parent a6f0a60 commit 979d831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/APCalendar.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ public static int dayOfWeek(int month, int day, int year)
{
/* to be implemented in part (b) */
int days = dayOfYear(month, day, year) - 1;
return (firstDayOfYear(year) + days) % 7);
return (firstDayOfYear(year) + days) % 7;
}
}

0 comments on commit 979d831

Please sign in to comment.