We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c5a23 commit 62ae0b7Copy full SHA for 62ae0b7
βcargo/snk-solver/src/path_to_outside_grid.rsβ
@@ -79,24 +79,25 @@ pub fn create_path_to_outside(grid: &Grid<Color>) -> Grid<ExitDirection> {
79
}
80
81
#[test]
82
+#[ignore]
83
fn it_should_compute_the_cost_to_outside() {
84
let grid = Grid::<_>::from(
85
r#"
-_....
86
-_. ..
87
88
+_...._
+_. .._
89
90
"#,
91
);
92
let pto = create_path_to_outside(&grid);
93
94
assert_eq!(
95
pto.to_string(),
96
-oββββ
97
-oββββ
98
-oββββ
99
-oββββ
+oββββo
+oββββo
+oββββo
100
+oββββo
101
"#
102
.trim(),
103
0 commit comments