summaryrefslogtreecommitdiff
path: root/rust/difference-of-squares/.exercism/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'rust/difference-of-squares/.exercism/config.json')
-rw-r--r--rust/difference-of-squares/.exercism/config.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/rust/difference-of-squares/.exercism/config.json b/rust/difference-of-squares/.exercism/config.json
new file mode 100644
index 0000000..ac80533
--- /dev/null
+++ b/rust/difference-of-squares/.exercism/config.json
@@ -0,0 +1,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"
+}