2. If the remainder isn't zero, return false (The year is not a leap year)
3. Otherwise divide the year by 100 and if the remainder isn't 0, return true (The year is a leap year)
4. Otherwise, divide the year by 400 and if the remainder isn't 0 return false (The year is not a leap year)
5. Otherwise, return true (year is a leap year)