こないだ塗り分け問題を解く JavaScript を書いてみたが、同じ原理で Sudoku も解けるんじゃないかと思ってコードを改良しつつやってみた。
Sudoku の場合は初期状態で値が決まっているセルと決まっていないセルがあるので、これを表現するために、Obvious と Ambiguous という二つのクラスを作成した。
function Ambiguous(candidates) {
this.candidates = candidates;
this.selected = undefined;
}
Ambiguous.prototype = {
get: function() {
return this.selected;
},
selectEach: function(callback) {
this.candidates.forEach(function(item) {
this.selected = item;
callback();
}.bind(this));
this.selected = undefined;
},
}
function Obvious(value) {
this.value = value;
}
Obvious.prototype = {
get: function() {
return this.value;
},
selectEach: function(callback) {
callback();
}
}
長くなるのでヘルパーを使いつつ、どっかから探してきた Sudoku の問題を表現するとこうなる。
var Nine = [1, 2, 3, 4, 5, 6, 7, 8, 9];
function createRow(args) {
return args.map(function(item) {
if(Array.isArray(item)) return new Ambiguous(item);
return new Obvious(item);
});
}
var Cells = [
createRow([Nine, Nine, 8, Nine, 9, Nine, Nine, Nine, Nine]),
createRow([ 9, Nine, Nine, Nine, 3, Nine, Nine, Nine, 1]),
createRow([ 6, 2, Nine, Nine, 4, 7, Nine, 8, Nine]),
createRow([Nine, Nine, 7, Nine, Nine, Nine, 1, 9, Nine]),
createRow([ 1, 3, Nine, 4, 7, Nine, 2, 5, 8]),
createRow([ 5, Nine, Nine, 8, 2, Nine, 3, 6, Nine]),
createRow([ 3, 6, 1, 7, Nine, 4, 8, 2, Nine]),
createRow([Nine, 5, 2, 9, 1, Nine, 4, 7, 6]),
createRow([Nine, 9, 4, 6, Nine, Nine, 5, Nine, 3])
];
インデントは気にしない
0 件のコメント:
コメントを投稿