Reverse look and say
Description:
Introduction
A look-and-say sequence is an integer sequence. To generate a member of the sequence from the previous member, read off the digits of the previous member, counting the number of digits in groups of the same digit.
Examples:1
⇒ "one 1
" ⇒ 11
21
⇒ "one 2
, one 1
" ⇒ 1211
Starting with 1
, the sequence begins with 1
, 11
, 21
, 1211
, 111221
, 312211
, 13112221
, ...
Starting with 7
, the sequence begins with 7
, 17
, 1117
, 3117
, 132117
, 1113122117
, ...
Task
Given a number , member of a look and say sequence, compute the starting number of the sequence, i.e. a number such that:
- the input number can be generated from using 0 or more look and say steps
- can't be generated from a different number using look and say algorithm
Note: In this kata all numbers (including starting numbers) contain at most 9 consecutive identical digits.
Input
n
[integer]
A member of a look and say sequence. Range: –
Output [integer]
The starting number of the sequence.
Examples
starting_number(2)
⇒2
2
can't be generated using look and say algorithmstarting_number(23)
⇒333
23
is generated from33
33
is generated from333
333
can't be generated
Similar Kata:
Stats:
Created | May 1, 2023 |
Published | May 2, 2023 |
Warriors Trained | 386 |
Total Skips | 13 |
Total Code Submissions | 402 |
Total Times Completed | 62 |
Python Completions | 62 |
Total Stars | 14 |
% of votes with a positive feedback rating | 98% of 22 |
Total "Very Satisfied" Votes | 21 |
Total "Somewhat Satisfied" Votes | 1 |
Total "Not Satisfied" Votes | 0 |
Total Rank Assessments | 13 |
Average Assessed Rank | 6 kyu |
Highest Assessed Rank | 5 kyu |
Lowest Assessed Rank | 7 kyu |