generated from PlexSheep/rs-base
Merge branch 'master' of https://git.cscherr.de/PlexSheep/wordle-analyzer
cargo devel CI / cargo CI (push) Successful in 38s
Details
cargo devel CI / cargo CI (push) Successful in 38s
Details
This commit is contained in:
commit
5ef63d4147
|
@ -71,7 +71,11 @@ fn main() -> anyhow::Result<()> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if response.won() {
|
if response.won() {
|
||||||
println!("You win! You took {} guesses. {:?}", game.step() - 1, game.solution());
|
println!(
|
||||||
|
"You win! You took {} guesses. {:?}",
|
||||||
|
game.step() - 1,
|
||||||
|
game.solution()
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
println!("You lose! The solution was {:?}.", game.solution());
|
println!("You lose! The solution was {:?}.", game.solution());
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,7 +60,7 @@ impl<'wl, WL: WordList> Game<'wl, WL> {
|
||||||
solution,
|
solution,
|
||||||
wordlist: wlist,
|
wordlist: wlist,
|
||||||
finished: false,
|
finished: false,
|
||||||
responses: Vec::new()
|
responses: Vec::new(),
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(game)
|
Ok(game)
|
||||||
|
|
Loading…
Reference in New Issue