Rust

1 · Marc-André Cournoyer · March 19, 2019, midnight
I must admit, the first few times I saw some Rust code I thought it was too complex, that the learning curve, versus the rewards it claimed, was too high. I thought it would never pick up and become a popular programming language. // A simple Ruzzle solver in Rust. // Finds all the word combinations in a 4x4 grid of letters. Some parts omitted. // Source: https://gist.github.com/macournoyer/c891d3a9233c18778252c8a367ee68c6 struct Board { dictionary: HashSet<String>, letters: String, } ...