1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! Test case wrappers for LeetCode problems. You should find it comfortable to 
//! import this module, and call `use_cases` function of each submodule 
//! accordingly.
//! 
//! Please note some examples will not work if you import this repo as an
//! external crate.

////////////////////////////////////////////////////////////////////////////////

/// Test cases for problems #1 to #99.
pub mod c000_0xx {
    pub mod c000_005;
    pub mod c000_006;
    pub mod c000_007;
    pub mod c000_008;
    pub mod c000_009;
    pub mod c000_010;
    pub mod c000_011;
    pub mod c000_012;
    pub mod c000_013;
    pub mod c000_014;
    pub mod c000_015;
    pub mod c000_016;
    pub mod c000_017;
}