Date : 2020-11-24 11:52:14
Directory : /Users/tianyishi/Documents/GitHub/Algorithms
Total : 30 files,  1228 codes, 159 comments, 176 blanks, all 1563 lines

Languages
+----------+------------+------------+------------+------------+------------+
| language | files      | code       | comment    | blank      | total      |
+----------+------------+------------+------------+------------+------------+
| Rust     |         28 |      1,177 |        158 |        149 |      1,484 |
| Markdown |          1 |         41 |          0 |         24 |         65 |
| TOML     |          1 |         10 |          1 |          3 |         14 |
+----------+------------+------------+------------+------------+------------+

Directories
+-----------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| path                                                                              | files      | code       | comment    | blank      | total      |
+-----------------------------------------------------------------------------------+------------+------------+------------+------------+------------+
| .                                                                                 |         30 |      1,228 |        159 |        176 |      1,563 |
| benches                                                                           |          1 |          0 |          0 |          2 |          2 |
| src                                                                               |         27 |      1,177 |        158 |        147 |      1,482 |
| src/algo                                                                          |         17 |        797 |        122 |        103 |      1,022 |
| src/algo/graph                                                                    |         13 |        670 |        112 |         87 |        869 |
| src/algo/graph/bfs                                                                |          2 |         81 |          6 |         12 |         99 |
| src/algo/graph/dfs                                                                |          1 |         63 |         20 |         13 |         96 |
| src/algo/graph/tree                                                               |          7 |        516 |         86 |         59 |        661 |
| src/algo/math                                                                     |          2 |         50 |          0 |          7 |         57 |
| src/data_structures                                                               |          1 |         64 |          6 |          6 |         76 |
| src/problems                                                                      |          5 |        308 |         30 |         34 |        372 |
| src/problems/backtracking                                                         |          2 |        305 |         30 |         31 |        366 |
| src/problems/dp                                                                   |          1 |          0 |          0 |          1 |          1 |
+-----------------------------------------------------------------------------------+------------+------------+------------+------------+------------+

Files
+-----------------------------------------------------------------------------------+----------+------------+------------+------------+------------+
| filename                                                                          | language | code       | comment    | blank      | total      |
+-----------------------------------------------------------------------------------+----------+------------+------------+------------+------------+
| /Users/tianyishi/Documents/GitHub/Algorithms/Cargo.toml                           | TOML     |         10 |          1 |          3 |         14 |
| /Users/tianyishi/Documents/GitHub/Algorithms/README.md                            | Markdown |         41 |          0 |         24 |         65 |
| /Users/tianyishi/Documents/GitHub/Algorithms/benches/bfs.rs                       | Rust     |          0 |          0 |          2 |          2 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo.rs                          | Rust     |          2 |          0 |          1 |          3 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph.rs                    | Rust     |         75 |         10 |          8 |         93 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/bfs.rs                | Rust     |          2 |          0 |          1 |          3 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/bfs/iterative.rs      | Rust     |         81 |          6 |         11 |         98 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/bfs/recursive.rs      | Rust     |          0 |          0 |          1 |          1 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/dfs.rs                | Rust     |          1 |          0 |          1 |          2 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/dfs/iterative.rs      | Rust     |         63 |         20 |         13 |         96 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree.rs               | Rust     |          7 |          0 |          1 |          8 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/center.rs        | Rust     |         68 |         11 |         10 |         89 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/height.rs        | Rust     |         51 |         14 |          7 |         72 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/height1.rs       | Rust     |         78 |         15 |         10 |        103 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/isomorphism.rs   | Rust     |         75 |          6 |          8 |         89 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/rooting.rs       | Rust     |        100 |         18 |          6 |        124 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/rooting1.rs      | Rust     |         78 |         12 |          7 |         97 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/graph/tree/sum.rs           | Rust     |         66 |         10 |         11 |         87 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/math.rs                     | Rust     |          2 |          0 |          1 |          3 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/math/gcd.rs                 | Rust     |         31 |          0 |          4 |         35 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/algo/math/lcm.rs                 | Rust     |         19 |          0 |          3 |         22 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/data_structures.rs               | Rust     |          1 |          0 |          1 |          2 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/data_structures/queue.rs         | Rust     |         64 |          6 |          6 |         76 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/lib.rs                           | Rust     |          3 |          0 |          1 |          4 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems.rs                      | Rust     |          2 |          0 |          1 |          3 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems/backtracking.rs         | Rust     |          2 |          0 |          1 |          3 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems/backtracking/nqueens.rs | Rust     |        134 |          9 |         13 |        156 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems/backtracking/sudoku.rs  | Rust     |        171 |         21 |         18 |        210 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems/dp.rs                   | Rust     |          1 |          0 |          1 |          2 |
| /Users/tianyishi/Documents/GitHub/Algorithms/src/problems/dp/edit_distance.rs     | Rust     |          0 |          0 |          1 |          1 |
| Total                                                                             |          |      1,228 |        159 |        176 |      1,563 |
+-----------------------------------------------------------------------------------+----------+------------+------------+------------+------------+