summaryrefslogtreecommitdiff
path: root/rust/difference-of-squares/.exercism/config.json
blob: ac8053366109650a311ac4d81b08cbf0f6a8a037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
  "authors": [
    "EduardoBautista"
  ],
  "contributors": [
    "ashleygwilliams",
    "coriolinus",
    "cwhakes",
    "eddyp",
    "EduardoBautista",
    "efx",
    "ErikSchierboom",
    "IanWhitney",
    "kytrinyx",
    "leoyvens",
    "lutostag",
    "mkantor",
    "nfiles",
    "petertseng",
    "rofrol",
    "stringparser",
    "TheDarkula",
    "xakon",
    "ZapAnton"
  ],
  "files": {
    "solution": [
      "src/lib.rs",
      "Cargo.toml"
    ],
    "test": [
      "tests/difference-of-squares.rs"
    ],
    "example": [
      ".meta/example.rs"
    ]
  },
  "blurb": "Find the difference between the square of the sum and the sum of the squares of the first N natural numbers.",
  "source": "Problem 6 at Project Euler",
  "source_url": "https://projecteuler.net/problem=6"
}