1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00

Merge pull request #20 from hanyunxu/sudoku-fix

Update sudokuchecker.code
This commit is contained in:
JacobEberhardt 2018-02-02 20:59:54 +01:00 committed by GitHub
commit 52ca38e624
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ counter = 0 // globally counts duplicate entries in boxes, rows and columns
counter = counter + checkEquality(a11,a12,b11,b12) counter = counter + checkEquality(a11,a12,b11,b12)
counter = counter + checkEquality(a21,a22,b21,b22) counter = counter + checkEquality(a21,a22,b21,b22)
counter = counter + checkEquality(c11,c21,d11,d12) counter = counter + checkEquality(c11,c12,d11,d12)
counter = counter + checkEquality(c21,c22,d21,d22) counter = counter + checkEquality(c21,c22,d21,d22)
// check column correctness // check column correctness