A word ladder program written in Python
Input would take two words and the program should output the shortest permutation of one to another
For eg
If the input is (cold, warm) The output would print the shortest path as follows
cold -> cord -> card -> ward -> warm
credit : asaadoov and AbdoAwad