浏览代码

Notes for where to update.

Currently the main program only supports 3x3 boards.
Steve Thielemann 4 月之前
父节点
当前提交
0c6067dc86
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      src/main.rs

+ 2 - 0
src/main.rs

@@ -73,6 +73,8 @@ fn main() {
 
         assert!(puzzle.specific_type == "Plain");
         assert!(puzzle.puzzle_type == "sudoku");
+
+        // This section will be updated, once AnyBoard is completed.
         if puzzle.order != 9 {
             panic!("We only support (3x3) puzzles at this time.")
         }