博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Check Soduku Solution
阅读量:2346 次
发布时间:2019-05-10

本文共 560 字,大约阅读时间需要 1 分钟。

The objective of Soduku game is to fill a  9×9  grid with digits so that each column, each row, and each of the nine  3×3  sub-grids that compose the grid (also called “boxes”, “blocks”, “regions”, or “sub-squares”) contains all of the digits from 1 to 9. A solved Soduku game is like:

Solved_Suduku

To check if a  9×9  grid is a valid solution, we need to check every row, every column and  3×3  subgrids. It is not hard to check rows and columns, but checking subgrids is little tricky. When considering going through the grid only one time, it will be much harder.

- See more at:

转载地址:http://efpvb.baihongyu.com/

你可能感兴趣的文章
spring boot日志配置
查看>>
list排序
查看>>
搭建zookeeper集群
查看>>
1005. 数独
查看>>
1006. 求和游戏
查看>>
IDEA eclipse 控制台日志输出到文件
查看>>
1022. Fib数列
查看>>
一些开源项目
查看>>
将博客搬至CSDN
查看>>
MySQL 中事务的实现
查看>>
CheckStyle
查看>>
IDE配置jvm参数
查看>>
内存溢出
查看>>
Spring Cloud 声明式服务调用 Feign
查看>>
JVM实用参数(一)JVM类型以及编译器模式
查看>>
spring cloud config 属性加解密
查看>>
rabbitmq安装
查看>>
RabbitMQ 使用
查看>>
动态代理
查看>>
oracle中merge into用法解析
查看>>