Sha256: da4fe93acd651c96ace3a0019593eec24dd09b191c2fd0b87f35d76368cffa57

Contents?: true

Size: 1.41 KB

Versions: 75

Compression:

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

## Setup

There are two different methods of getting set up to run the tests with Objective-C:

- Create an Xcode project with a test target which will run the tests.
- Use the ruby gem `objc` as a test runner utility.

Both are described in more detail here: http://exercism.io/languages/objective-c

### Submitting Exercises

When submitting an exercise, make sure your solution file is in the same directory as the test code.

The submit command will look something like:

```shell
exercism submit <path-to-exercism-workspace>/objective-c/difference-of-squares/DifferenceOfSquares.m
```

You can find the Exercism workspace by running `exercism debug` and looking for the line beginning
with Workspace.

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

75 entries across 75 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.118 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.117 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.116 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.115 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.114 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.113 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.111 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.110 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.109 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.108 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.107 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.106 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.105 tracks/objective-c/exercises/difference-of-squares/README.md
trackler-2.2.1.104 tracks/objective-c/exercises/difference-of-squares/README.md