Given this solution martix:
+---------------+--------------+-----------------+
| 5 19 7 | 4 3 6 | 19 8 2 |
| 19 4 6 | 2 8 5 | 7 19 3 |
| 8 3 2 | 7 1 9 | 56 4 56 |
+---------------+---------------+----------------+
| 4 6 5 | 1 9 7 | 2 3 8 |
| 7 8 3 | 6 4 2 | 159 19 15 |
| 19 2 19 | 8 5 3 | 46 7 46 |
+---------------+---------------+-----------------+
| 2 7 49 | 3 6 1 | 8 5 49 |
| 6 19 8 | 6 7 4 | 3 2 19 |
| 3 5 14 | 9 2 8 | 14 6 7 |
+----------------+--------------+----------------+
What is the logic to solve this? I can use guessing, but I think someone can walk me through the solution.
Thanks, Bruce