该问题通常被称为Minesweeper问题(skienna编写的编程竞赛培训手册)。
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1130
我写了一些代码来提供节省空间的解决方案,但我不知道为什么循环怪异!
var data={
some_var:'some value'
}
jQuery.post('/?wc-ajax=myaction',data)
.done(function(result){
console.log('ajax request completed. result=',result);
})
.fail(function(){
console.log('ajax request failed. check network log.');
});
在https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1130上可以找到期望的输出