leetcode_rust/cases/
mod.rs

1//! Test case wrappers for LeetCode problems. You should find it comfortable to 
2//! import this module, and call `use_cases` function of each submodule 
3//! accordingly.
4//! 
5//! Please note some examples will not work if you import this repo as an
6//! external crate.
7
8////////////////////////////////////////////////////////////////////////////////
9
10/// Test cases for problems #1 to #99.
11pub mod c000_0xx {
12    pub mod c000_005;
13    pub mod c000_006;
14    pub mod c000_007;
15    pub mod c000_008;
16    pub mod c000_009;
17    pub mod c000_010;
18    pub mod c000_011;
19    pub mod c000_012;
20    pub mod c000_013;
21    pub mod c000_014;
22    pub mod c000_015;
23    pub mod c000_016;
24    pub mod c000_017;
25}
26