Simplified is valid func

This commit is contained in:
BordedDev 2025-01-17 01:12:10 +01:00
parent f08cd376a2
commit ab8b28feba

View File

@ -24,7 +24,7 @@ class SudokuPuzzle extends EventTarget {
* undefined is an empty cell, null is a cell that was cleared
* @typedef {(number|null|undefined)[]} SudokuState
*/
/**
*
* @type {SudokuState[]}
@ -198,9 +198,7 @@ class SudokuPuzzle extends EventTarget {
* @return boolean
*/
isValueValidForSlot(value, slot, state = this.#activeState) {
return !this.#boxGetValues(slot, state)
.union(this.#crossGetValues(slot, state))
.has(value)
return !this.getValues(slot, state).has(value)
}
/**