dart-exercism/leap/lib/leap.dart

7 lines
137 B
Dart
Raw Normal View History

2024-10-14 11:37:17 +02:00
class Leap {
// Put your code here
bool leapYear(int year) {
return year % 4 == 0 && (year % 100 != 0 || year % 400 == 0);
}
}