Skip to content
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d62c849
Josh
JoshLapierre45 Oct 1, 2025
0d34043
Merge pull request #2 from JoshLapierre45/main
JoshLapierre45 Oct 1, 2025
d0ebecc
Making a change on README.md - BF
bfcortesss Oct 1, 2025
998b951
Update README.md
hchagerman Oct 1, 2025
34cf9bd
Merge pull request #3 from hchagerman/main
CamCranda11 Oct 1, 2025
879e103
added name
CamCranda11 Oct 1, 2025
3d705cf
Merge branch 'main' of https://github.com/CODEScs3250/ConsoleGameHub
bfcortesss Oct 1, 2025
da7e85d
Merge pull request #4 from CamCranda11/main
CamCranda11 Oct 1, 2025
601a087
added my name
ahmedbacaad Oct 1, 2025
7f53469
Merge pull request #6 from ahmedbacaad/main
CamCranda11 Oct 1, 2025
720cc0e
Update GameHistoryTracker.java
hchagerman Oct 8, 2025
849e003
Merge pull request #7 from hchagerman/main
CamCranda11 Oct 8, 2025
aff990c
Delete README.md
CamCranda11 Oct 8, 2025
6d1a78a
Create README.md
CamCranda11 Oct 8, 2025
c74c435
Merge branch 'MetroCS:main' into main
ahmedbacaad Oct 12, 2025
bf31595
my attempt at a description for Sudoku
CamCranda11 Oct 13, 2025
5fe4473
Remove null score check and logging
CamCranda11 Oct 15, 2025
6ee4d04
Merge pull request #12 from MetroCS/main
CamCranda11 Oct 23, 2025
9fe2d04
Fix formatting of print statements in play method
CamCranda11 Oct 23, 2025
6218baf
Attempt #1 Checkstyle
CamCranda11 Oct 23, 2025
2664a79
Attempt #2 at Checkstyle
CamCranda11 Oct 23, 2025
d0faee6
Update SudokuGame.java
CamCranda11 Oct 23, 2025
f32f98c
Fix formatting of Sudoku game instructions
CamCranda11 Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion SudokuGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* </pre>
* @version 1
*/

class SudokuGame implements Game {
@Override
public String getName() {
Expand All @@ -18,7 +19,11 @@ public String getName() {

@Override
public Optional<Integer> play() {
System.out.println("[Playing Sudoku - Placeholder]");
System.out.println("Playing Sudoku");
System.out.println("The goal of Sudoku is to fill each space in");
System.out.println("the grid with a digit, 1 through 9. The only");
System.out.println("rule is that there can be no recurring ");
System.out.println("digits on any colomn, row, or subgrid of 3x3.")
return Optional.empty();
}
}