Compare commits

...

2 commits

Author SHA1 Message Date
6380a9a928 i finally solved it 2024-12-04 23:38:59 +00:00
20f2212595 i dont even know anymore 2024-12-04 23:24:03 +00:00
2 changed files with 7938 additions and 105966 deletions

File diff suppressed because one or more lines are too long

View file

@ -34,22 +34,23 @@ fn main() {
for y in 1..leny {
let widthup = y >= 4;
let widthdown = (leny - y) > 3;
let widthdown = (leny - y) >= 4;
for x in 1..lenx+1 {
// check if enough space left and right
println!("x is {x}");
println!("y is {y}");
println!("width up: {}", widthup);
println!("width down: {}", widthdown);
let widthleft = x >= 4;
println!("width left: {}", widthleft);
let widthright = (lenx - x) > 3;
println!("width right: {}", widthright);
let widthright = (lenx - x) >= 3;
// search algorithm starts here
// check if the char is s
// check if the char is X
if frfrvec[y][x] == 'X' {
println!("x is {x}");
println!("y is {y}");
println!("width up: {}", widthup);
println!("width down: {}", widthdown);
println!("width left: {}", widthleft);
// check if going upwards
if widthup {
if frfrvec[y - 1][x] == 'M'