Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created November 21, 2021 23:01
Show Gist options
  • Save bartubozkurt/3fba638ff3fb20d77740c25ffdafd4db to your computer and use it in GitHub Desktop.
Save bartubozkurt/3fba638ff3fb20d77740c25ffdafd4db to your computer and use it in GitHub Desktop.
public class LeapYear {
public boolean isLeapYear(int year) {
if (year % 400 == 0)
return true;
if (year % 100 == 0)
return false;
return year % 4 == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment