Task #1 -- Pattern (Sudoku table):
Model
Implement
Pattern process is one of the easiest ways to understand nested loops. In this task, you will be creating a square pattern that replicates the Sudoku game. Sudoku is a logic-based, combinatorial number-placement puzzle. The objective of the game is to fill a 9x9 grid with digits so that each column, each row, and each of the nine 3x3 subgrids that compose the grid contains all the digits from 1 to 9. For this assignment, you must create a table for Sudoku. There should be 9 3x3 grids as shown in the picture below. You can color each of the 3x3 grids randomly. Your pattern should start from the cell (5,5) of sheet 1 of your spreadsheet. The following is an example of how the pattern could look after assigning colors: 10, 12, 3.
Sudoku
Clear
16
Do not worry about the numbers inside the pattern. For different color options, you can visit: http://access-excel.tips/excel-vba-color-code-list/. You must use FOR loops and IF statements to design the pattern and color.