Sha256: 48b9a743bb96603c914a062d8bc18a36399a27af87a4aabcfe0eb881d0763e24

Contents?: true

Size: 1.14 KB

Versions: 84

Compression:

Stored size: 1.14 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.

## Setup

Go through the setup instructions for JavaScript to install the
 necessary dependencies:

http://exercism.io/languages/javascript/installation

## Running the test suite

The provided test suite uses [Jasmine](https://jasmine.github.io/).
You can install it by opening a terminal window and running the
following command:

```sh
npm install -g jasmine
```

Run the test suite from the exercise directory with:

```sh
jasmine sum-of-multiples.spec.js
```

In many test suites all but the first test have been marked "pending".
Once you get a test passing, activate the next one by changing `xit` to `it`.

## 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

84 entries across 84 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/javascript/exercises/sum-of-multiples/README.md
trackler-2.2.1.97 tracks/javascript/exercises/sum-of-multiples/README.md
trackler-2.2.1.96 tracks/javascript/exercises/sum-of-multiples/README.md
trackler-2.2.1.95 tracks/javascript/exercises/sum-of-multiples/README.md