solve_leetcode/
lib.rs

1pub mod problems;
2
3#[cfg(test)]
4mod tests {
5    #[test]
6    fn it_works() {
7        assert_eq!(2 + 2, 4);
8    }
9}