Built-in method

Leap
Leap in Kotlin
import java.time.*

data class Year(val year: Int) {
    val isLeap = LocalDate.of(year, Month.FEBRUARY, 28).isLeapYear
}

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".

8th May 2024 · Found it useful?