Skip to content

Commit 78d8d7d

Browse files
committed
feat: add module
1 parent b8d7848 commit 78d8d7d

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ members = [
3737
"maximum_gap",
3838
"search_suggestions_system",
3939
"max_area_of_island",
40+
"interleaving-string",
4041
]

interleaving-string/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "interleaving-string"
3+
version = "0.1.0"
4+
authors = ["Ryan Li <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]

interleaving-string/src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#[cfg(test)]
2+
mod tests {
3+
#[test]
4+
fn it_works() {
5+
assert_eq!(2 + 2, 4);
6+
}
7+
}

0 commit comments

Comments
 (0)