help with a cryptarithmetic puzzle - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Programming with C++ (https://www.supportforums.net/forumdisplay.php?fid=20) +---- Thread: help with a cryptarithmetic puzzle (/showthread.php?tid=11682) |
help with a cryptarithmetic puzzle - deadlydreamer - 08-31-2010 how this puzzle works is that you're given an equation of letters, the goal is to identify the value of each letter. For example : SEND + MORE = MONEY ( given before and solved) and each letter can only be given a value from 0 to 9 and two letters cant have the same value. Code: S E N D Code: T O O Code: #include <iostream> RE: help with a cryptarithmetic puzzle - Renegader - 08-31-2010 Hmm.. i'll try. RE: help with a cryptarithmetic puzzle - deadlydreamer - 08-31-2010 (08-31-2010, 02:43 PM)Renegader Wrote: Hmm.. i'll try. thanks a lot in advance and if you have any easier way you can also share it and i'll try to help think of a algorithm for it with you |