Project Euler #43: Sub-string divisibility

  • + 0 comments

    If you got TLE, you may consider using generator instead of regular for loop or listcomp. I used for loop first, then moved on to listcomp, nothing worked. Finally, using generator I got over test case 6. There's nothing wrong in your code, so far I am concerned