79557001

Date: 2025-04-05 13:09:16
Score: 1.5
Natty:
Report link

For me I input it as:

bool is_LeapYear(int year)
{
    if ((year % 100) % 4 == 0)
    {
        return true;
    }
    else
    {
        return false;
    }
}

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: fboxf