Java sudoku game. Throughout the tutorial, you will learn how to create a gui (graphical user interface) for the soduku game, style the sudoku tiles, and add dividing border lines. You will also learn how to select numbers and place them on the tile, and check for errors.
Sudoku Board Code:
String[] puzzle = {
"--74916-5",
"2---6-3-9",
"-----7-1-",
"-586----4",
"--3----9-",
"--62--187",
"9-4-7---2",
"67-83----",
"81--45---"
};
String[] solution = {
"387491625",
"241568379",
"569327418",
"758619234",
"123784596",
"496253187",
"934176852",
"675832941",
"812945763"
};
Setup Java with Visual Studio Code:
https://youtu.be/BB0gZFpukJU
Code: https://github.com/ImKennyYip/sudoku-java
Website: https://www.kennyyipcoding.com/
Java Game Programming Projects Playlist:
https://www.youtube.com/playlist?list=PLnKe36F30Y4Y1XQOqNsL9Fgg_p6nYhcng
JavaScript Game Programming Projects Playlist:
https://www.youtube.com/playlist?list=PLnKe36F30Y4bLhA-st9sC4ZthyV7nsL2Q
Subscribe for more coding tutorials !