Christmas, this year, falls on a Wednesday!
But on which day did Christmas fall in years past?
Write a Ruby class that returns the correct weekday of Christmas Day for previous years.
Your code should return the name of the day of the week that Christmas Day was:
- Officially celebrated
- In England
- Using the relative local date and time
You may not use Ruby's Date
or Time
classes, nor any other third party library to perform date computations for you. Your solution should be derived from first-principles, implementing the logic yourself.
See the attached tests.
See the attached tests. All tests must pass!
See the attached tests.
- Copy/paste the
main.rb
andtest.rb
files below into your working directory. - run
$ ruby test.rb
to see the status of the tests.