Possible Duplicate:
Help with algorithm problem from SPOJ
Came across this interview question. Given two n-digit prime numbers, convert the first prime number to the second changing one digit at a time. The intermediate numbers also need to be prime. This needs to be done in the minimum number of steps (checking for primality and changing a digit are considered steps)
E.g. convert 1033 to 8179 (1033->1733->3733->…….->8179)
Nice challenge for a rainy Monday evening (it is here, anyway!). This can be done using Dijkstra’s algorithm. The first step is to create a graph containing all 4-digit primes. Then use Dijkstra’s algorithm to find the shortest path between the start/end primes. Here’s an implementation in Python: