Sha256: 1fc87338c6650c54eb9bd13cbddb7808469c8e7d4f80038f528db953a9afae99

Contents?: true

Size: 956 Bytes

Versions: 68

Compression:

Stored size: 956 Bytes

Contents

# Sum Of Multiples

Given a number, find the sum of all the multiples of particular numbers up to
but not including that number.

If we list all the natural numbers up to but not including 20 that are
multiples of either 3 or 5, we get 3, 5, 6 and 9, 10, 12, 15, and 18.

The sum of these multiples is 78.

Given a number, find the sum of the multiples of a given set of numbers,
up to but not including that number.

## Setup

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

http://exercism.io/languages/typescript

## Requirements

Install assignment dependencies:

```bash
$ yarn install
```

## Making the test suite pass

Execute the tests with:

```bash
$ yarn test
```



## Source

This is a classic toy problem, but we were reminded of it by seeing it in the Go Tour.

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
trackler-2.2.1.107 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.106 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.105 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.104 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.103 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.102 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.101 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.100 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.99 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.98 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.97 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.96 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.95 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.94 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.93 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.92 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.91 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.90 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.89 tracks/typescript/exercises/sum-of-multiples/README.md
trackler-2.2.1.88 tracks/typescript/exercises/sum-of-multiples/README.md