Your task is to look for patterns in the long sequence of digits in the encrypted signal.
The technique you're going to use here is called the largest series product.
Let's define a few terms, first.
Let's work through an example, with the input "63915".
3, there will be three possible series:
"639""391""915""639" is 162 (6 × 3 × 9 = 162)"391" is 27 (3 × 9 × 1 = 27)"915" is 45 (9 × 1 × 5 = 45)"63915" is from the series "639".
So the answer is 162.Your task is to look for patterns in the long sequence of digits in the encrypted signal.
The technique you're going to use here is called the largest series product.
Let's define a few terms, first.
Let's work through an example, with the input "63915".
3, there will be three possible series:
"639""391""915""639" is 162 (6 × 3 × 9 = 162)"391" is 27 (3 × 9 × 1 = 27)"915" is 45 (9 × 1 × 5 = 45)"63915" is from the series "639".
So the answer is 162.