-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathProgram.cs
295 lines (268 loc) · 7.64 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
//#define DebugAlgorithm // <- uncomment to watch the generation algorithm
using System;
using Towel;
bool closeRequested = false;
while (!closeRequested)
{
NewPuzzle:
Console.Clear();
int?[,] generatedBoard = Sudoku.Generate();
int?[,] activeBoard = (int?[,])generatedBoard.Clone();
int x = 0;
int y = 0;
Console.Clear();
while (!closeRequested && ContainsNulls(activeBoard))
{
Console.SetCursorPosition(0, 0);
Console.WriteLine("Sudoku");
Console.WriteLine();
ConsoleWrite(activeBoard, generatedBoard);
Console.WriteLine();
Console.WriteLine("Press arrow keys to select a cell.");
Console.WriteLine("Press 1-9 to insert values.");
Console.WriteLine("Press [delete] or [backspace] to remove.");
Console.WriteLine("Press [escape] to exit.");
Console.WriteLine("Press [end] to generate a new sudoku.");
Console.SetCursorPosition(y * 2 + 2 + (y / 3 * 2), x + 3 + +(x / 3));
switch (Console.ReadKey(true).Key)
{
case ConsoleKey.UpArrow: x = x <= 0 ? 8 : x - 1; break;
case ConsoleKey.DownArrow: x = x >= 8 ? 0 : x + 1; break;
case ConsoleKey.LeftArrow: y = y <= 0 ? 8 : y - 1; break;
case ConsoleKey.RightArrow: y = y >= 8 ? 0 : y + 1; break;
case ConsoleKey.D1: case ConsoleKey.NumPad1: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 1, x, y) ? 1 : activeBoard[x, y]; break;
case ConsoleKey.D2: case ConsoleKey.NumPad2: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 2, x, y) ? 2 : activeBoard[x, y]; break;
case ConsoleKey.D3: case ConsoleKey.NumPad3: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 3, x, y) ? 3 : activeBoard[x, y]; break;
case ConsoleKey.D4: case ConsoleKey.NumPad4: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 4, x, y) ? 4 : activeBoard[x, y]; break;
case ConsoleKey.D5: case ConsoleKey.NumPad5: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 5, x, y) ? 5 : activeBoard[x, y]; break;
case ConsoleKey.D6: case ConsoleKey.NumPad6: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 6, x, y) ? 6 : activeBoard[x, y]; break;
case ConsoleKey.D7: case ConsoleKey.NumPad7: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 7, x, y) ? 7 : activeBoard[x, y]; break;
case ConsoleKey.D8: case ConsoleKey.NumPad8: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 8, x, y) ? 8 : activeBoard[x, y]; break;
case ConsoleKey.D9: case ConsoleKey.NumPad9: activeBoard[x, y] = IsValidMove(activeBoard, generatedBoard, 9, x, y) ? 9 : activeBoard[x, y]; break;
case ConsoleKey.End: goto NewPuzzle;
case ConsoleKey.Backspace: case ConsoleKey.Delete: activeBoard[x, y] = generatedBoard[x, y] ?? null; break;
case ConsoleKey.Escape: closeRequested = true; break;
}
}
if (!closeRequested)
{
Console.Clear();
Console.WriteLine("Sudoku");
Console.WriteLine();
ConsoleWrite(activeBoard, generatedBoard);
Console.WriteLine();
Console.WriteLine("You Win!");
Console.WriteLine();
Console.WriteLine("Play Again [enter], or quit [escape]?");
GetInput:
switch (Console.ReadKey(true).Key)
{
case ConsoleKey.Enter: break;
case ConsoleKey.Escape:
closeRequested = true;
Console.Clear();
break;
default: goto GetInput;
}
}
}
Console.Clear();
Console.Write("Sudoku was closed.");
bool IsValidMove(int?[,] board, int?[,] lockedBoard, int value, int x, int y)
{
// Locked
if (lockedBoard[x, y] is not null)
{
return false;
}
// Square
for (int i = x - x % 3; i <= x - x % 3 + 2; i++)
{
for (int j = y - y % 3; j <= y - y % 3 + 2; j++)
{
if (board[i, j] == value)
{
return false;
}
}
}
// Row
for (int i = 0; i < 9; i++)
{
if (board[x, i] == value)
{
return false;
}
}
// Column
for (int i = 0; i < 9; i++)
{
if (board[i, y] == value)
{
return false;
}
}
return true;
}
bool ContainsNulls(int?[,] board)
{
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
if (board[i, j] is null)
{
return true;
}
}
}
return false;
}
void ConsoleWrite(int?[,] board, int?[,] lockedBoard)
{
ConsoleColor consoleColor = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.DarkGray;
Console.WriteLine("╔═══════╦═══════╦═══════╗");
for (int i = 0; i < 9; i++)
{
Console.Write("║ ");
for (int j = 0; j < 9; j++)
{
if (lockedBoard is not null && lockedBoard[i, j] is not null)
{
Console.Write((lockedBoard[i, j].HasValue ? lockedBoard[i, j].ToString() : "■") + " ");
}
else
{
Console.ForegroundColor = ConsoleColor.White;
Console.Write((board[i, j].HasValue ? board[i, j].ToString() : "■") + " ");
Console.ForegroundColor = ConsoleColor.DarkGray;
}
if (j is 2 || j is 5)
{
Console.Write("║ ");
}
}
Console.WriteLine("║");
if (i is 2 || i is 5)
{
Console.WriteLine("╠═══════╬═══════╬═══════╣");
}
}
Console.WriteLine("╚═══════╩═══════╩═══════╝");
Console.ForegroundColor = consoleColor;
}
public static class Sudoku
{
public static int?[,] Generate(
Random? random = null,
int? blanks = null)
{
random ??= Random.Shared;
if (blanks.HasValue && blanks < 0 || 81 < blanks)
{
throw new ArgumentOutOfRangeException(nameof(blanks), blanks.Value, $"{nameof(blanks)} < 0 || 81 < {nameof(blanks)}");
}
else if (!blanks.HasValue)
{
blanks = random.Next(0, 82);
}
int?[,] board = new int?[9, 9];
(int[] Values, int Count)[,] valids = new (int[] Values, int Count)[9, 9];
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
valids[i, j] = (new int[9], -1);
}
}
#region GetValidValues
void GetValidValues(int row, int column)
{
bool SquareValid(int value, int row, int column)
{
for (int i = row - row % 3; i <= row; i++)
{
for (int j = column - column % 3; j <= column - column % 3 + 2 && !(i == row && j == column); j++)
{
if (board[i, j] == value)
{
return false;
}
}
}
return true;
}
bool RowValid(int value, int row, int column)
{
for (int i = 0; i < column; i++)
{
if (board[row, i] == value)
{
return false;
}
}
return true;
}
bool ColumnValid(int value, int row, int column)
{
for (int i = 0; i < row; i++)
{
if (board[i, column] == value)
{
return false;
}
}
return true;
}
valids[row, column].Count = 0;
for (int i = 1; i <= 9; i++)
{
if (SquareValid(i, row, column) &&
RowValid(i, row, column) &&
ColumnValid(i, row, column))
{
valids[row, column].Values[valids[row, column].Count++] = i;
}
}
}
#endregion
for (int i = 0; i < 9; i++)
{
for (int j = 0; j < 9; j++)
{
GetValidValues(i, j);
while (valids[i, j].Count is 0)
{
board[i, j] = null;
i = j is 0 ? i - 1 : i;
j = j is 0 ? 8 : j - 1;
#if DebugAlgorithm
Console.SetCursorPosition(0, 0);
Program.ConsoleWrite(board, null);
Console.WriteLine("Press [Enter] To Continue...");
Console.ReadLine();
#endif
}
int index = random.Next(0, valids[i, j].Count);
int value = valids[i, j].Values[index];
valids[i, j].Values[index] = valids[i, j].Values[valids[i, j].Count - 1];
valids[i, j].Count--;
board[i, j] = value;
#if DebugAlgorithm
Console.SetCursorPosition(0, 0);
Program.ConsoleWrite(board, null);
Console.WriteLine("Press [Enter] To Continue...");
Console.ReadLine();
#endif
}
}
foreach (int i in random.NextUnique(Math.Max(1, blanks.Value), 0, 81))
{
int row = i / 9;
int column = i % 9;
board[row, column] = null;
}
return board;
}
}