import java.time.{Year}
object Leap {
def leapYear(year: Int): Boolean =
Year.of(year).isLeap()
}
This may be considered a "wicked cheat" for this exercise, by simply passing the year into the isLeap() method of the Year class.
Although it is not in the spirit of this exercise, isLeap()
would be the idiomatic way to determine if a year is a leap year in the "real world".
1st Jan 2025
·
Found it useful?