First attempt on implementing solutions for leetcode problems using Rust. For someone like me with a C++ background,
coding in Rust requires a paradigm change. Move semantics are everywhere, everything has to be explicit, and there are
really not so many similarities of standard libraries between Rust and C++. In any cases, it’s fun to code in Rust,
and I am sure this code can be more Rustified.
use std::collections::HashSet; |