14 August 2017 09:25:44 AM COMBINATION_LOCK_TEST C++ version COMBINATION_LOCK tries to determine the combiantion of a lock. A combination lock consists of M dials, each having N symbols. We seek to determine the combination C. The number of dials is M = 4 The number of symbols is N = 5 The number of possible combinations is M^N = 625 The "secret" combination: 0: 1 1: 2 2: 3 3: 4 The combination was found on step 195 COMBINATION_LOCK_TEST Normal end of execution. 14 August 2017 09:25:44 AM