This is a supplemental problem to the CryptoMath problem. If you solve the problem methodically or randomly matters for expected solution time. This calculates the difference in techniques. My reference solution has some commented out graphics code to visualize the timing differences.
---
If you have N possible combinations to a lock you can calculate the likelihood of opening the lock as a percentage given X attempts.
There are two ways to figure out the combination to try:
Choosing a random combination is very fast and easy. No record keeping needed. Choosing a methodical way of trying them all is a little slower on each attempt, and incurs a fix cost before the first attempt is made.
If you have:
Which technique should you use to get to your goal chance fastest?
--- Note for the curious: The really short solution is gaming the system and just choosing randomly. Eventually one of the solutions will guess right on all the test suite.
1 player likes this problem
3 Comments
2 Comments