/
Binom
/
SudokuSolverAlise
Обзор
Документация
Войти
/
Binom
/
SudokuSolverAlise
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
SolutionHint.java
13 строк
370 B
Binom
upload files
23 ноя 2025, 12:16
23 ноя 2025, 12:16
a87f9bf
Код
Авторство
О чём код?
package org.example; public class SolutionHint { public final int row, col, digit; public final String contextType; // "row", "column", "block" public SolutionHint(int row, int col, int digit, String contextType) { this.row = row; this.col = col; this.digit = digit; this.contextType = contextType; } }