// // Mystery 1 Level easy solution // const int easy_1(int index, int number);
const int easy_1(int index, int number) { const int easy_1_solution[9][9] = {{7, 2, 6, 3, 0, 0, 5, 0, 0}, {0, 0, 0, 2, 1, 8, 3, 6, 0}, {1, 8, 0, 6, 0, 0, 9, 2, 4}, {0, 6, 0, 0, 5, 0, 9, 8, 3}, {4, 0, 3, 7, 9, 1, 6, 0, 2}, {2, 5, 9, 0, 3, 0, 0, 4, 0}, {8, 3, 1, 0, 0, 4, 0, 7, 5}, {0, 7, 9, 8, 3, 6, 0, 0, 0}, {0, 0, 2, 0, 0, 7, 3, 9, 8}}; return easy_1_solution[index][number]; }
// // Mystery 1 Level easy //
const int easy_1_solution(int index, int number);
const int easy_1_solution(int index, int number) { const int easy_1_solution[9][9] = {{7, 2, 6, 3, 4, 9, 5, 1, 8}, {9, 4, 5, 2, 1, 8, 3, 6, 7}, {1, 8, 3, 6, 7, 5, 9, 2, 4}, {1, 6, 7, 4, 5, 2, 9, 8, 3}, {4, 8, 3, 7, 9, 1, 6, 5, 2}, {2, 5, 9, 8, 3, 6, 7, 4, 1}, {8, 3, 1, 2, 9, 4, 6, 7, 5}, {5, 7, 9, 8, 3, 6, 1, 2, 4}, {4, 6, 2, 5, 1, 7, 3, 9, 8}}; return easy_1_solution[index][number]; }
|