Sha256: 01fd6841147373e738b241731d76d55d63bb8888900193df148b1ef53f899897

Contents?: true

Size: 1.08 KB

Versions: 174

Compression:

Stored size: 1.08 KB

Contents

# Difference Of Squares

Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.

The square of the sum of the first ten natural numbers is
(1 + 2 + ... + 10)² = 55² = 3025.

The sum of the squares of the first ten natural numbers is
1² + 2² + ... + 10² = 385.

Hence the difference between the square of the sum of the first
ten natural numbers and the sum of the squares of the first ten
natural numbers is 3025 - 385 = 2640.

* * * *

For installation and learning resources, refer to the [exercism help page][].

[exercism help page]: http://exercism.io/languages/lfe

To run the provided tests, you will need `make`.
Open a terminal window and run the following from the exercise directory:

```sh
make test
```

You should now be able to see the results of the test suite for the exercise.

## Source

Problem 6 at Project Euler [http://projecteuler.net/problem=6](http://projecteuler.net/problem=6)

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

Version data entries

174 entries across 174 versions & 1 rubygems

Version Path
trackler-2.2.1.18 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.17 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.16 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.15 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.14 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.13 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.12 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.11 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.10 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.9 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.8 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.7 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.6 tracks/lfe/exercises/difference-of-squares/README.md
trackler-2.2.1.5 tracks/lfe/exercises/difference-of-squares/README.md