Skip to content

Commit

Permalink
Merge pull request #37 from teogor/feature/solver
Browse files Browse the repository at this point in the history
Implement Sudoku puzzle parsing and decoding
  • Loading branch information
teogor authored Nov 26, 2023
2 parents 8c52e3a + f297498 commit 7b0a99c
Show file tree
Hide file tree
Showing 8 changed files with 344 additions and 227 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,6 @@ sudokus.json
local.properties

/docs/dokka/
demo/src/main/resources/raw/sudoku-solved.txt
demo/src/main/resources/raw/sudoku-converted.txt
demo/src/main/resources/raw/sudoku-puzzle.txt
15 changes: 0 additions & 15 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

212 changes: 0 additions & 212 deletions demo/src/main/kotlin/dev/teogor/sudoklify/demo/SudokuSolver.kt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* Copyright 2023 Teogor (Teodor Grigor)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package dev.teogor.sudoklify.demo.gen

import dev.teogor.sudoklify.types.toToken
import java.util.regex.Pattern

class SudokuDecoder {
private val cellRegex: Pattern = Pattern.compile("<td class=\"[a-zA-Z]*\">(.*?)</td>")
private var matchCount = 0

fun parsePuzzle(fileContent: String): String {
val puzzleBuilder = StringBuilder()

val matchResults = cellRegex.matcher(fileContent)

while (matchResults.find()) {
matchCount++
val cellContent = matchResults.group(1)
val parsedNumber = if (cellContent == "&nbsp;") {
"-"
} else {
cellContent.toInt().toToken()
}
puzzleBuilder.append(parsedNumber)
}

return puzzleBuilder.toString()
}

fun getMatchCount(): Int {
return matchCount
}
}
Loading

0 comments on commit 7b0a99c

Please sign in to comment.