isLeapYear function

bool isLeapYear(
  1. int year
)

Implementation

bool isLeapYear(int year) {
  return ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);

  // example:
  // isLeapYear(2020) => true
}