exercism/ruby/leap/leap.rb

10 lines
132 B
Ruby
Raw Normal View History

2018-03-02 22:27:55 +00:00
class Year
def self.leap?(yr)
yr % 400 == 0 || (yr % 4 == 0 && yr % 100 != 0)
end
end
module BookKeeping
VERSION = 3
end