summaryrefslogtreecommitdiff
path: root/src/solvers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/solvers.rs')
-rw-r--r--src/solvers.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/solvers.rs b/src/solvers.rs
index 24b7e2c..669fb6e 100644
--- a/src/solvers.rs
+++ b/src/solvers.rs
@@ -3,6 +3,10 @@ pub struct Wall {
}
impl Wall {
+ pub fn from_heights(heights: Vec<u32>) -> Self {
+ Self { heights }
+ }
+
fn create_empty(w: u32) -> Self {
let heights = if w == 0 {
vec![]
@@ -14,7 +18,6 @@ impl Wall {
v.push(1);
v
};
- let heights = vec![0, 1, 0, 2, 1, 0, 2, 2, 1];
Self { heights }
}