The tests are inconsistent with the statement of the problem. Finite strings like ..123451234512345 only repeat to the end of the string, then switch to zeros.
The problem should specify the precision required, there are numbers that cannot be represented with doubles and are loosing significant digits. And this really becomes an issue when your test suite use less significant digits to identify repeating patterns such as in cases 7 and 10. I was able to overcome this issue by using 14 digits, but some people used 16 (If someone else is having problems that's the way to go). Moreover, Andrew is right, a number like 0.333333 is technically not a repeating decimal.
If the number is a true repeater, then multiplying it by 999... for some number of 9's will result in an integer. The difficulty lies in the rounding. I had to tune the tolerance to deal with cases like .123451234512345, which aren't truly repeating.
Some cleaning up!
188 Solvers
Generate a string like abbcccddddeeeee
238 Solvers
Given a matrix, swap the 2nd & 3rd columns
535 Solvers
Find last zero for each column
251 Solvers
2787 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!