From bb47ddde4174827ca7a3ad4b0b0a4a74d299d50c Mon Sep 17 00:00:00 2001 From: betegelse Date: Wed, 26 Mar 2014 15:05:25 -0300 Subject: [PATCH] Clarified the last example Added a sentence specifying the series length for the last example --- largest-series-product.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/largest-series-product.md b/largest-series-product.md index a3d9d8714f..b0defedbef 100644 --- a/largest-series-product.md +++ b/largest-series-product.md @@ -1,4 +1,3 @@ For example, for the input `'0123456789'`, the largest product for a series of 3 digits is 504 (7 * 8 * 9), and the largest product for a series of 5 digits is 15120 (5 * 6 * 7 * 8 * 9). -For the input `'73167176531330624919225119674426574742355349194934'`, the -largest product is 23520. +For the input `'73167176531330624919225119674426574742355349194934'`, the largest product for a series of 6 digits is 23520.