Project Euler #86: Cuboid route

  • + 2 comments

    Nice question! Im am curious if anyone managed to solve it with Python 3?

    My Python 3 solution was just a bit too slow. on my personal comuter it took 15s to compute the table of solutions, which is more than the limit of 10s. However when I translated my solution to Java it finishes in just 0.2s which is much less than the limit of 4s.

    Maybe the limit is a bit too low for Python?