Merge branch 'master' of https://git.cscherr.de/PlexSheep/wordle-analyzer
cargo devel CI / cargo CI (push) Successful in 46s Details

This commit is contained in:
Christoph J. Scherr 2024-03-22 17:26:44 +01:00
commit c372285015
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ pub trait WordList: Clone + std::fmt::Debug + Default {
buf.sort_by(|a, b| {
a.1.partial_cmp(&b.1).unwrap()
});
buf.reverse();
Ok(buf)
}
}