leetcode-test-utils 0.0.7

Rust tools for solving leetcode problems
Documentation
//! Testing & asserting & case-generating solutions for leetcode.

pub mod tree;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}