Skip to content
/ sudoku Public

A sudoku solver and puzzle generator.

Notifications You must be signed in to change notification settings

farzonl/sudoku

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku Solver

Code status

codecov Build Status Total alerts Language grade: Java

Demo

Gradle Plugins

  • java
  • jacoco
  • application
  • checkstyle
  • findbugs
  • find-sec-bugs-plugin
  • errorprone

Misc Dep

  • git spell check (used for pre-commit spell checking)

See instructions here: https://github.com/mprpic/git-spell-check

how to build?

gradle build

how to run

gradle run

or

java -jar build/libs/sudoku-0.0.1.jar resources/test1.csv 

how to generate documentation

gradle javadoc

how to auto-format

gradle googleJavaFormat

code analytics

reports on code quality can be found in:

build/reports

There you should see:

  • checkstyle (linter results for style conformance)
  • findbugs (static code analysis results)
  • jacoco (code coverage results)
  • tests (junit test results)