Skip to content

Commit b8f8ca2

Browse files
committed
Might as well
1 parent 33015d4 commit b8f8ca2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cspuz_rs_puzzles/src/puzzles/nuritwin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub fn solve_nuritwin(
2929
assert_eq!(rooms.len(), clues.len());
3030

3131
for i in 0..rooms.len() {
32-
if (rooms[i].len() as i32) == 1 {
32+
if (rooms[i].len() as i32) < 3 {
3333
return None;
3434
}
3535
let block_size = &solver.int_var(1, (rooms[i].len() as i32) / 2);

0 commit comments

Comments
 (0)