diff options
author | crupest <crupest@outlook.com> | 2020-05-07 22:37:39 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-05-07 22:37:39 +0800 |
commit | 20b7e2bfba2805c755b0800e25ef5505c41f469c (patch) | |
tree | 1a3a9c604461996a62e5d99fa3c480e759eced0f /works/solutions/rust/src/lib.rs | |
parent | a39a26346786fe33c8da905cf010e0e6b0376716 (diff) | |
download | crupest-20b7e2bfba2805c755b0800e25ef5505c41f469c.tar.gz crupest-20b7e2bfba2805c755b0800e25ef5505c41f469c.tar.bz2 crupest-20b7e2bfba2805c755b0800e25ef5505c41f469c.zip |
import(solutions): Move rust codes into sub dir.
Diffstat (limited to 'works/solutions/rust/src/lib.rs')
-rw-r--r-- | works/solutions/rust/src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/works/solutions/rust/src/lib.rs b/works/solutions/rust/src/lib.rs new file mode 100644 index 0000000..b2f3416 --- /dev/null +++ b/works/solutions/rust/src/lib.rs @@ -0,0 +1,7 @@ +pub mod two_sum; +pub mod add_two_numbers; +pub mod length_of_longest_substring; +pub mod find_median_sorted_arrays; +pub mod longest_palindrome; + +pub struct Solution; |