finish implementing sudoku-solver.js and writing unit test
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
export const grids = {
|
||||
gridOne: {
|
||||
locations: ['A1', 'A2', 'A3', 'B1', 'B2', 'B3', 'C1', 'C2', 'C3'],
|
||||
values: []
|
||||
},
|
||||
gridTwo: {
|
||||
locations: ['A4', 'A5', 'A6', 'B4', 'B5', 'B6', 'C4', 'C5', 'C6'],
|
||||
values: []
|
||||
},
|
||||
gridThree: {
|
||||
locations: ['A7', 'A8', 'A9', 'B7', 'B8', 'B9', 'C7', 'C8', 'C9'],
|
||||
values: []
|
||||
},
|
||||
gridFour: {
|
||||
locations: ['D1', 'D2', 'D3', 'E1', 'E2', 'E3', 'F1', 'F2', 'F3'],
|
||||
values: []
|
||||
},
|
||||
gridFive: {
|
||||
locations: ['D4', 'D5', 'D6', 'E4', 'E5', 'E6', 'F4', 'F5', 'F6'],
|
||||
values: []
|
||||
},
|
||||
gridSix: {
|
||||
locations: ['D7', 'D8', 'D9', 'E7', 'E8', 'E9', 'F7', 'F8', 'F9'],
|
||||
values: []
|
||||
},
|
||||
gridSeven: {
|
||||
locations: ['G1', 'G2', 'G3', 'H1', 'H2', 'H3', 'I1', 'I2', 'I3'],
|
||||
values: []
|
||||
},
|
||||
gridEight: {
|
||||
locations: ['G4', 'G5', 'G6', 'H4', 'H5', 'H6', 'I4', 'I5', 'I6'],
|
||||
values: []
|
||||
},
|
||||
gridNine: {
|
||||
locations: ['G7', 'G8', 'G9', 'H7', 'H8', 'H9', 'I7', 'I8', 'I9'],
|
||||
values: []
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user