Final Project COMP 250 Winter 2021 posted: Friday, Apr. 16, 2021 due: Friday, Apr. 30, 2021 at 23:59 General Instructions • Submission instructions – Please note that the submission deadline for the...

1 answer below »
The specifications about what can be used in the assignment should be followed perfectly. Specifications and the assignment are in the file named FinalProject.pdf.


Final Project COMP 250 Winter 2021 posted: Friday, Apr. 16, 2021 due: Friday, Apr. 30, 2021 at 23:59 General Instructions • Submission instructions – Please note that the submission deadline for the final project is very strict. No sub- missions will be accepted after the deadline. – As always you can submit your code multiple times but only the latest submission will be kept. We encourage you to submit a first version a few days before the deadline (computer crashes do happen and codePost may be overloaded during rush hours). – This is the file you should be submitting on codePost: ∗ ChessSudoku.java Do not submit any other files, especially .class files. Any deviation from these requirements may lead to lost marks • Please note that the classes you submit should be part of a package called finalproject. • Starter code is provided for this project. Do not change any of the class names, file names, method headers. You can add helper (i.e. private!) methods if you wish. Note also that for this project, you are NOT allowed to import any other class (all import statements other than the one provided in the starter code will be removed). Any failure to comply with these rules will give you an automatic 0. • The project shall be graded automatically. Requests to evaluate the project manually shall not be entertained, so please make sure that you follow the instruction closely or your code may fail to pass the automatic tests. • Whenever you submit your files to codepost, you will see the results of some exposed tests. These tests are a mini version of the tests we will be using to grade your work. If your code fails those tests, it means that there is a mistake somewhere. Even if your code passes those tests, it may still contain some errors. We will test your code on a much more challenging set of examples. We highly encourage you to test your code thoroughly before submitting your final version. • You will automatically get 0 if your code does not compile. • Failure to comply with any of these rules will be penalized. If anything is unclear, it is up to you to clarify it by asking either directly a TA during office hours, or on the discussion board on Piazza. 1 https://upload.wikimedia.org/wikipedia/commons/8/8c/Sudoku_solved_by_bactracking.gif Learning Objectives This project is meant for you to practice once again working with recursive algorithms. In particular, you will learn about backtracking algorithms which at the base use the idea depth-first search on search trees. The starter code provided for this project is not as extensive as in the past assignments. This will leave you more freedom on how to go about implementing the tasks your code is required to perform. Introduction A Sudoku is a Japanese logic puzzle which has been extremely popular for the past 20 years. In classic Sudoku, the player has to fill a 9 by 9 grid using digits from 1 to 9 making sure that no digit is repeated on any row, column or 3 by 3 box composing the grid. If you have never done so, I would suggest you to try solving some Sudoku puzzles (you can find many here). As you might know, many different variants of Sudoku exist. My personal favourite is Chess Sudoku which I discovered when last summer I found myself binge watching a YouTube channel called Cracking the Cryptic (by the way, I highly recommend the channel even if you think Sudoku is not for you. You’ll change your mind!). A Chess Sudoku puzzle is a classic Sudoku puzzle with the addition of one or more of the following chess inspired rules: • Knight Rule: a digit must not appear a chess knight’s move away from itself. Knights in chess move forming an L shape: either two squares vertically and one horizontally, or two squares horizontally and one square vertically. See this figure for a graphical representation. • King Rule: a digit must not be a King’s move away from itself. Which to the classical rules of Sudoku only adds the fact that a digit cannot be a single diagonal move away from itself. • Queen Rule: every 9 in the grid acts like a chess Queen and must not be in the same row/- column/3x3 box or diagonal of any other 9. For this project you will write a program that will attempt to solve Classical and Chess Sudoku puzzles. The starter code contains a simple class representing a Sudoku puzzle. The class also contains several methods that allow you to load a Sudoku grid from a txt file and display it on the screen. Your goal is to implement the method solve() which modifies the ChessSudoku object on which it is call, by filling in the grid to obtain a solution. Backtracking There are many different ways you can write a program that solves Sudoku’s puzzles. A common way to approach the problem is using a backtracking algorithm. Backtracking is a brute force approach that consists in building a set of solutions incrementally. The idea is to use recursion to build a solution step by step. In the usual scenario, we have different options at each step and we simply make a decision. As soon as the algorithm realizes that the step taken led to a set of solutions that would be invalid (i.e. they won’t satisfy the constraints of the problem), then it backtracks, 2 https://sudoku.com/ https://www.youtube.com/channel/UCC-UOdK8-mIjxBQm_ot1T-Q https://www.diatomenterprises.com/wp-content/uploads/2015/05/01-1.jpg effectively eliminating all solutions that could be obtained by taking that last step. You can think of this as if the set of all possible solutions is represented by the leaves of a tree where each internal node represents a step taken toward a possible solution (i.e. a partial solve to the problem). Then a backtracking algorithm would perform a depth-first search on this tree and as soon as it figures out that the solutions obtained in a certain branch would be invalid, it simply discards that whole branch and moves to the next one. For example, when we begin to solve a problem we can think about starting at the root of a tree where its children denoted the possible choices we have available. By choosing one of its children (i.e. by making a choice) we take a step toward a certain sets of possible solutions (i.e. the leaves that are reachable from that child). Other choices will then be available to us and we’ll keep taking steps forward until we either reach a leaf (i.e. a solution) or an internal node which we know will not lead to any valid solution. If we reach a valid solution, then our task might be over. On the other hand, if we reach an invalid solution or an internal node that will not lead to any valid solution, we take a step back and at the previous level of the tree we choose the next child. Consider the following tree: root / | \ A B C /\ /\ /\ D E F G H I The leaves denote the set of possible solutions to the problem. Let’s say that only G, H, and I are valid solutions. Now, a backtracking algorithm would start from the root and visit the first child (i.e. take a decision that represents a first step toward a solution). We might then already realize that A would not lead to any valid solution. If that’s the case we would then backtrack, undoing what we had done in the last step and getting back to the root node where we’ll then take the next available choice that will lead us to node B. From B the next step will lead us to the leaf F which does not represent a valid solution. We will then backtrack, undoing what we had done in the last step and getting back to B where we can then take the next available choice. This will lead us to G which happens to be a valid solution and hence we are done. How can you apply this type of reasoning to solving a Sudoku? The idea would be the follow- ing: as long as there are empty cells in the grid pick an empty cell and place a number in it if a conflict occurs (i.e., at least one of the Sudoku rules is broken), then remove that number and backtrack if there are no conflicts, attempt to fill in the rest of the grid if you were unable to fill the rest of the grid then remove that number and backtrack It is up to you to figure out how to code this idea into your program. I would highly suggest you 3 to spend some time solving a couple of Sudokus before starting to write your program. This will allow you to better understand the problem at hand and think about possible steps you can take to optimize your program. This project is much more open-ended than your previous assignments and it leaves you the freedom to be more creative and try to bring together everything you have learned throughout the semester. Your Task In the ChessSudoku class implement the method solve(). You can find additional information on the method in the template code. Please feel free to add as many private helper methods/classes as your see fit. Testing and Evaluation Your program will be tested on several classic Sudoku puzzles, as well as different variants of the chess Sudoku puzzles. Together with the template code, we provided you with a set of txt files representing different Sudoku puzzles with different difficulties which you can use to test your program. Following the same format you can create as many new puzzles as you like to further test your code. The puzzles we’ll be using to grade your assignment will remain secret. Please note that the txt files should be stored in the project folder of your program, and not the package folder, nor the src folder. This is how we will evaluate your code: + 75% Your program finds a solution to 3x3 Sudoku puzzles in less than 10 seconds (assuming they have a solution). The points awarded will be proportional to the number of puzzles from the secret tests your code can solve. + 10% Your program find a solution to square puzzles up to 5x5 (assuming they have a solution). + 10% Your program has an additional feature that finds all possible solutions to a given puzzle. This will involve continuing the search after the first solution is found (i.e., pretending that solution doesn’t exist) to see if another solution can be found. All the solved Sudokus should be correctly stored in the field named solutions. last 5% The remaining 5% of the grade will be established based on your code’s ranking in a tournament where each program will be given one minute to solve each Sudoku puzzle on our computer. The ranking is established based on the number of Sudokus it succeeds at solving, from
Answered 7 days AfterApr 17, 2021

Answer To: Final Project COMP 250 Winter 2021 posted: Friday, Apr. 16, 2021 due: Friday, Apr. 30, 2021 at 23:59...

Rushendra answered on Apr 24 2021
138 Votes
chess-25-April/.classpath

    
        
            
        
    
    
    
chess-25-April/.project

     chess
    
    
    
    
        
             org.eclipse.jdt.core.javabuilder
            
            
        
    
    
         org.eclipse.jdt.core.javanature
    
chess-25-April/.settings/org.eclipse.jdt.core.prefs
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=15
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=15
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enu
mIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=15
chess-25-April/bin/finalproject/ChessSudoku.class
chess-25-April/bin/finalproject/easy3x3.txt
3
4 5 x | x x x | x 3 x
7 x x | x x 3 | x 9 1
3 x 6 | x 1 x | 4 5 x
---------------------
9 x x | 7 x 5 | x x 6
6 x x | 1 x 9 | x x 5
8 x x | 6 x 4 | x x 9
---------------------
x 6 4 | x 7 x | 5 x 3
2 7 x | 3 x x | x x 4
x 3 x | x x x | x 7 8
(Easy puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/hard3x3.txt
3
4 x x | 2 x 7 | x 5 x
x x 3 | 1 x x | x x x
x 2 9 | x x x | x x 4
---------------------
x x x | x x x | x 4 2
2 7 x | 6 x 4 | x 1 8
6 4 x | x x x | x x x
---------------------
1 x x | x x x | 2 8 x
x x x | x x 1 | 4 x x
x 8 x | 5 x 6 | x x 1
(Hard puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/knightSudokuEasy3x3.txt
3
x x 3 | 6 x 8 | 1 x x
x 4 x | x x x | x 7 x
2 x x | x x x | x x 3
---------------------
6 x x | x 9 x | x x 8
x x x | 1 x 2 | x x x
7 x x | x 6 x | x x 4
---------------------
4 x x | x x x | x x 1
x 6 x | x x x | x 2 x
x x 5 | 4 x 9 | 8 x x
(Easy puzzle designed by Mark Goodliffe and
Simon Anthony from Cracking the Cryptic)
chess-25-April/bin/finalproject/knightSudokuHard3x3.txt
3
4 x 6 | x x x | x 3 x
x x x | x x x | x 5 1
x x 8 | x x x | x x x
---------------------
x x x | x x x | x x 3
x x 4 | 6 x 9 | 2 x x
5 x x | x x x | x x x
---------------------
x x x | x x x | 5 x x
9 4 x | x x x | x x x
x 2 x | x x x | 3 x 9
(Easy puzzle designed by Mark Goodliffe and
Simon Anthony from Cracking the Cryptic)
chess-25-April/bin/finalproject/knightSudokuMedium3x3.txt
3
x x x | x x x | x x x
x 6 9 | x x x | x 8 3
3 x x | x x x | 6 x x
---------------------
2 x 5 | 3 9 x | 4 x x
6 x x | 2 x x | 8 x x
4 x x | 6 x x | 2 x x
---------------------
7 x x | x x x | 3 x x
x 3 1 | x x x | x 5 6
x x x | x x x | x x x
(Easy puzzle designed by Mark Goodliffe and
Simon Anthony from Cracking the Cryptic)
chess-25-April/bin/finalproject/medium3x3.txt
3
9 1 3 | 6 x x | x x x
2 5 x | x 8 7 | x 9 x
x x x | x x x | x 4 x
---------------------
5 8 x | x 4 6 | x x 7
x x x | x 5 x | x x x
7 x x | 8 9 x | x 5 6
---------------------
x 9 x | x x x | x x x
x 6 x | 3 7 x | x 2 9
x x x | x x 5 | 3 6 4
(Medium puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/veryEasy3x3.txt
3
3 6 1 | 8 9 5 | 4 7 x
9 x 2 | 7 3 4 | 8 1 6
7 4 8 | 1 x 2 | 3 9 5
---------------------
5 7 3 | x 2 6 | 1 4 8
8 2 9 | 5 4 1 | x 3 7
x 1 6 | 3 8 7 | 5 2 9
---------------------
6 9 7 | 4 1 8 | 2 5 3
1 8 5 | 2 7 3 | 9 x 4
2 3 4 | 6 5 9 | 7 8 1
(Partially solved easy puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/veryEasy3x3_twoSolutions.txt
3
2 9 5 | 7 4 3 | 8 6 1
4 3 1 | 8 6 5 | 9 x x
8 7 6 | 1 9 2 | 5 4 3
---------------------
3 8 7 | 4 5 9 | 2 1 6
6 1 2 | 3 8 7 | 4 9 5
5 4 9 | 2 1 6 | 7 3 8
---------------------
7 6 3 | 5 2 4 | 1 8 9
9 2 8 | 6 7 1 | 3 5 4
1 5 4 | 9 3 8 | 6 x x
(Easy puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/veryEasy4x4.txt
4
13 4 11 1 | 9 2 12 10 | 16 x 7 x | 6 8 5 14
9 12 8 3 | 6 1 15 5 | 4 x 14 x | 7 16 11 2
14 6 16 10 | 13 11 7 8 | 9 x 12 x | 3 4 1 15
2 15 5 7 | 3 4 16 14 | x x 11 8 | 10 12 13 9
-----------------------------------------------------
1 10 7 13 | 12 5 6 15 | x 14 2 3 | 4 9 16 11
11 16 2 9 | 10 14 13 7 | x 15 x x | 8 3 6 12
15 5 12 8 | 4 3 1 11 | x 6 16 x | 14 13 2 7
3 14 4 6 | 2 8 9 16 | 11 x x 7 | 1 10 15 5
-----------------------------------------------------
12 11 x x | 15 x x 6 | 3 x x x | x x x x
8 x 3 x | x 13 11 x | x x x 6 | 15 x x x
6 x x 15 | x x 4 x | 13 x x 12 | 11 x x x
x 13 x x | 1 16 8 x | 15 x x 11 | 5 x 12 x
-----------------------------------------------------
10 8 14 4 | 11 6 5 9 | x 16 3 x | 2 15 7 13
16 1 15 11 | 14 7 3 13 | x 8 9 x | 12 5 10 6
7 3 6 2 | 16 12 10 4 | x x x x | 9 11 8 1
5 9 13 12 | 8 15 2 1 | 7 x x 10 | 16 14 3 4
(4x4 Sudoku puzzle from www.menneske.no/sudoku/4/eng/)
chess-25-April/bin/finalproject/veryHard3x3.txt
3
x x x | x x x | x x x
x 1 x | 6 2 x | x 9 x
x x 2 | x x 9 | 3 1 x
---------------------
x x 4 | x x 6 | x 8 x
x x 8 | 7 x 2 | 1 x x
x 3 x | 8 x x | 5 x x
---------------------
x 6 9 | 1 x x | 4 x x
x 8 x | x 7 3 | x 5 x
x x x | x x x | x x x
(Evil puzzle from www.websudoku.com)
chess-25-April/bin/finalproject/veryHard4x4.txt
4
2 16 x x | x 15 3 x | 6 x 1 x | x x x x
x 3 10 12 | 9 x x x | x 4 x x | x x x 11
x x 9 4 | x x x 5 | x x 3 13 | x x x 1
6 x x x | x 7 16 2 | x 8 10 x | x x x x
-----------------------------------------------------
x x 14 9 | x 3 x x | x x x 16 | x x x x
x x x x | x x x 7 | x x x 1 | 13 x x 5
5 6 x 2 | 14 16 1 x | 15 x 12 x | x 11 x 4
x x 12 8 | 11 2 x 9 | 13 x 14 4 | 10 x 6 x
-----------------------------------------------------
x 7 x 6 | 16 8 x 12 | 14 x 4 2 | 5 10 x x
10 x 13 x | x 1 x 4 | x 5 15 11 | 16 x 12 2
16 x x 11 | 3 x x x | 7 x x x | x x x x
x x x x | 10 x x x | x x 16 x | 7 4 x x
-----------------------------------------------------
x x x x | x 12 4 x | 11 7 9 x | x x x 8
1 x x x | 2 11 x x | 10 x x x | 12 5 x x
12 x x x | x x 6 x | x x x 3 | 11 16 1 x
x x x x | x 10 x 15 | x 16 6 x | x x 7 14
(4x4 Sudoku puzzle from www.menneske.no/sudoku/4/eng/)
chess-25-April/bin/finalproject/veryHard5x5.txt
5
1 4 23 x 12 | 3 x x 14 11 | x 17 25 x 22 | x 16 9 13 20 | x x x x 24
10 x x 3 x | 9 x 15 2 x | 21 x 11 x 5 | x 8 1 25 x | x 7 x x 14
x 11 22 8 x | x 19 x 12 17 | 13 x 2 x x | 23 14 3 x x | x x x x 5
20 x x 16 7 | x x 25 13 1 | x 14 19 24 x | 5 x x x x | x x 8 x x
x 25 5 13 2 | x 6 21 16 x | 9 23 x x x | x x x x 17 | x 12 11 x 10
----------------------------------------------------------------------------------
9 6 21 x x | 19 7 x x 22 | 4 3 8 13 x | 2 x x 24 23 | 16 1 x 14 x
7 x x 23 x | x 1 x x 14 | x 21 x 6 16 | 12 19 x 15 10 | x 4 x 13 11
x x x x x | 5 17 9 10 24 | 23 x x x 14 | 25 x x 21 8 | 2 x 15 x x
x x x x x | x 16 x 4 25 | 10 11 x x x | x 3 14 x x | x 23 x 19 7
x 13 x x 19 | 15 x 11 23 x | 22 20 x 18 x | x x 7 x x | 6 x 10 24 8
----------------------------------------------------------------------------------
x 8 x x x | x x x 9 3 | x 12 x 23 x | x 1 22 x x | x x x 5 x
24 2 11 x x | 12 25 17 x x | x 7 x 4 x | x x 15 8 x | x x x x 16
19 21 12 x x | x x x x x | x x 18 x x | x x x x x | x x 13 9 4
6 x x x x | x 22 14 x x | x 15 x 25 x | x x 23 17 4 | x x 18 12 21
x 18 x x x | x x 1 6 x | x 22 x 5 x | 7 21 x x x | x x x 25 x
----------------------------------------------------------------------------------
15 17 9 x 13 | x x 4 x x | x 16 x 11 23 | x 24 12 x 3 | 22 x x 8 x
16 7 x 6 x | x x 12 11 x | x x x 3 19 | 17 2 x 4 x | x x x x x
x x x x 4 | 17 3 x x 2 | 12 x x x 24 | 9 6 20 18 1 | x x x x x
11 3 x 19 x | 14 23 x 24 9 | 6 25 x 20 x | 13 x x 5 x | x 16 x x 18
x 12 x 18 24 | 6 13 x ...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here