mirror of
https://github.com/Xevion/exercism.git
synced 2026-01-31 22:24:10 -06:00
'init'
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
def leap_year(year):
|
||||
return (year % 100 == 0 and year % 400 == 0) or (year % 100 != 0 and year % 4 == 0)
|
||||
Reference in New Issue
Block a user