Sha256: f9bb0f3684ee2a666f49cef832d89d8ff9f992531f43f6ed235f554d5e6595b5
Contents?: true
Size: 1.17 KB
Versions: 79
Compression:
Stored size: 1.17 KB
Contents
# Sum Of Multiples Given a number, find the sum of all the unique multiples of particular numbers up to but not including that number. If we list all the natural numbers below 20 that are multiples of 3 or 5, we get 3, 5, 6, 9, 10, 12, 15, and 18. The sum of these multiples is 78. * * * * For installation and learning resources, refer to the [exercism help page](http://exercism.io/languages/ruby). For running the tests provided, you will need the Minitest gem. Open a terminal window and run the following command to install minitest: gem install minitest If you would like color output, you can `require 'minitest/pride'` in the test file, or note the alternative instruction, below, for running the test file. Run the tests from the exercise directory using the following command: ruby sum_of_multiples_test.rb To include color from the command line: ruby -r minitest/pride sum_of_multiples_test.rb ## Source A variation on Problem 1 at Project Euler [http://projecteuler.net/problem=1](http://projecteuler.net/problem=1) ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.
Version data entries
79 entries across 79 versions & 1 rubygems