From f2c66ac67fc9cff03e2bcb27f1f08e529377162e Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Wed, 12 Apr 2023 11:39:39 +0200 Subject: [PATCH 1/2] Sync largest-series-product docs with problem-specifications The largest-series-product exercise has been overhauled as part of a project to make practice exercises more consistent and friendly. For more context, please see the discussion in the forum, as well as the pull request that updated the exercise in the problem-specifications repository: - https://forum.exercism.org/t/new-project-making-practice-exercises-more-consistent-and-human-across-exercism/3943 - https://github.com/exercism/problem-specifications/pull/2246 --- .../.docs/instructions.md | 30 +++++++++++++------ .../.docs/introduction.md | 5 ++++ 2 files changed, 26 insertions(+), 9 deletions(-) create mode 100644 exercises/practice/largest-series-product/.docs/introduction.md diff --git a/exercises/practice/largest-series-product/.docs/instructions.md b/exercises/practice/largest-series-product/.docs/instructions.md index b7df99d..f297b57 100644 --- a/exercises/practice/largest-series-product/.docs/instructions.md +++ b/exercises/practice/largest-series-product/.docs/instructions.md @@ -1,14 +1,26 @@ # Instructions -Given a string of digits, calculate the largest product for a contiguous -substring of digits of length n. +Your task is to look for patterns in the long sequence of digits in the encrypted signal. -For example, for the input `'1027839564'`, the largest product for a -series of 3 digits is 270 (9 \* 5 \* 6), and the largest product for a -series of 5 digits is 7560 (7 \* 8 \* 3 \* 9 \* 5). +The technique you're going to use here is called the largest series product. -Note that these series are only required to occupy *adjacent positions* -in the input; the digits need not be *numerically consecutive*. +Let's define a few terms, first. -For the input `'73167176531330624919225119674426574742355349194934'`, -the largest product for a series of 6 digits is 23520. +- **input**: the sequence of digits that you need to analyze +- **series**: a sequence of adjacent digits (those that are next to each other) that is contained within the input +- **span**: how many digits long each series is +- **product**: what you get when you multiply numbers together + +Let's work through an example, with the input `"63915"`. + +- To form a series, take adjacent digits in the original input. +- If you are working with a span of `3`, there will be three possible series: + - `"639"` + - `"391"` + - `"915"` +- Then we need to calculate the product of each series: + - The product of the series `"639"` is 162 (`6 × 3 × 9 = 162`) + - The product of the series `"391"` is 27 (`3 × 9 × 1 = 27`) + - The product of the series `"915"` is 45 (`9 × 1 × 5 = 45`) +- 162 is bigger than both 27 and 45, so the largest series product of `"63915"` is from the series `"639"`. + So the answer is **162**. diff --git a/exercises/practice/largest-series-product/.docs/introduction.md b/exercises/practice/largest-series-product/.docs/introduction.md new file mode 100644 index 0000000..597bb5f --- /dev/null +++ b/exercises/practice/largest-series-product/.docs/introduction.md @@ -0,0 +1,5 @@ +# Introduction + +You work for a government agency that has intercepted a series of encrypted communication signals from a group of bank robbers. +The signals contain a long sequence of digits. +Your team needs to use various digital signal processing techniques to analyze the signals and identify any patterns that may indicate the planning of a heist. From 2e7c20f35c5ae02c55632cc2871ef9af70fe429e Mon Sep 17 00:00:00 2001 From: Katrina Owen Date: Wed, 12 Apr 2023 11:40:00 +0200 Subject: [PATCH 2/2] Delete test cases from largest-series-product This deletes two deprecated test cases so that we can dramatically simplify the instructions for this exercise. --- .../largest-series-product/.meta/tests.toml | 1 - .../largest-series-product-test.red | 18 ------------------ 2 files changed, 19 deletions(-) diff --git a/exercises/practice/largest-series-product/.meta/tests.toml b/exercises/practice/largest-series-product/.meta/tests.toml index 8883454..6bd30c0 100644 --- a/exercises/practice/largest-series-product/.meta/tests.toml +++ b/exercises/practice/largest-series-product/.meta/tests.toml @@ -44,4 +44,3 @@ # rejects negative span "5fe3c0e5-a945-49f2-b584-f0814b4dd1ef" = true - diff --git a/exercises/practice/largest-series-product/largest-series-product-test.red b/exercises/practice/largest-series-product/largest-series-product-test.red index 8492575..c24eca4 100644 --- a/exercises/practice/largest-series-product/largest-series-product-test.red +++ b/exercises/practice/largest-series-product/largest-series-product-test.red @@ -100,24 +100,6 @@ canonical-cases: [#( ) function: "largest-product" uuid: "5d81aaf7-4f67-4125-bf33-11493cc7eab7" -) #( - description: {reports 1 for empty string and empty product (0 span)} - input: #( - digits: "" - span: 0 - ) - expected: 1 - function: "largest-product" - uuid: "06bc8b90-0c51-4c54-ac22-3ec3893a079e" -) #( - description: {reports 1 for nonempty string and empty product (0 span)} - input: #( - digits: "123" - span: 0 - ) - expected: 1 - function: "largest-product" - uuid: "3ec0d92e-f2e2-4090-a380-70afee02f4c0" ) #( description: "rejects empty string and nonzero span" input: #(