-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from teogor/feature/solver
Implement Sudoku puzzle parsing and decoding
- Loading branch information
Showing
8 changed files
with
344 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
212 changes: 0 additions & 212 deletions
212
demo/src/main/kotlin/dev/teogor/sudoklify/demo/SudokuSolver.kt
This file was deleted.
Oops, something went wrong.
48 changes: 48 additions & 0 deletions
48
demo/src/main/kotlin/dev/teogor/sudoklify/demo/gen/SudokuDecoder.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 == " ") { | ||
"-" | ||
} else { | ||
cellContent.toInt().toToken() | ||
} | ||
puzzleBuilder.append(parsedNumber) | ||
} | ||
|
||
return puzzleBuilder.toString() | ||
} | ||
|
||
fun getMatchCount(): Int { | ||
return matchCount | ||
} | ||
} |
Oops, something went wrong.