From 5142de1d8df8e69858ac0788cc3ce89161291eaf Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Fri, 31 May 2024 23:46:22 +0200 Subject: Add difference-of-squares --- rust/difference-of-squares/.exercism/config.json | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 rust/difference-of-squares/.exercism/config.json (limited to 'rust/difference-of-squares/.exercism/config.json') 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" +} -- cgit v1.2.3