Just for fun I am trying to figure out the logic to solve a Word Progression puzzle, but am stumped. I have a file that has over 100,000 words and each Ascii value (I built to solve Jumble puzzles). Originally I thought I could just use an Ascii progression somehow but no good so far.
Here's a sample:
Turn the word 'THINK' into 'BRAIN' by changing one letter at a time.
Each new word must be a real word.
Answer: 'note Number is the ascii value of the word from the file
THINK '382
THICK '371
TRICK '381
TRACK '373
TRACT '382
TRAIT '388
TRAIN '382
BRAIN '364
There are 6,919 actual 5 letter words between
BACCA 330 (lowest Ascii) and MUZZY 431 (highest Ascii)
Anyone have any thoughts on the logic.
============================================================
"The only way to get rid of a temptation
is to yield to it."
Oscar Wilde (1854-1900)
============================================================
Here's a sample:
Turn the word 'THINK' into 'BRAIN' by changing one letter at a time.
Each new word must be a real word.
Answer: 'note Number is the ascii value of the word from the file
THINK '382
THICK '371
TRICK '381
TRACK '373
TRACT '382
TRAIT '388
TRAIN '382
BRAIN '364
There are 6,919 actual 5 letter words between
BACCA 330 (lowest Ascii) and MUZZY 431 (highest Ascii)
Anyone have any thoughts on the logic.
============================================================
"The only way to get rid of a temptation
is to yield to it."
Oscar Wilde (1854-1900)
============================================================
Comment