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!
Find perfect placement of non-rotating dominoes (easier)
240 Solvers
Find the largest value in the 3D matrix
1064 Solvers
84 Solvers
123 Solvers
Generate a random matrix A of (1,-1)
214 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!