Monday, July 28, 2014

Numerical Maze P3E1M1 - Medium

In 8 minutes, find a path from the START to the END passing only through numbers that are divisible by 12. There is only one solution for this numerical maze. To solve this maze faster, first memorize and apply the following three hints:

Hints:

* If a number is divisible by 3 and by 4 then the number is divisible by 12.

* If the sum of the digits of a number is divisible by 3 then the number is divisible by 3. For example, 2130021 is divisible by 3 because 9, the sum of its digits (2 + 1 + 3 + 0 + 0 + 2 + 1 = 9), is divisible by 3.

* If half of a number is an even number then that number is divisible by 4. For example, 72 is divisible by 4 because half of it, 36, is an even number. Also, if the last two digits of a number is divisible by 4 then that number is divisible by 4. As an example: 897232 is divisible by 4 because its last 2 digits; i.e. 32, is divisible by 4.


Numerical Maze



Solution:






No comments:

Post a Comment