Skip to content

Commit f65d997

Browse files
committed
feat: new module
1 parent 30a4d0f commit f65d997

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

Cargo.lock

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ members = [
4141
"maximum_area_of_a_piece_of_cake_after_horizontal_and_vertical_cuts",
4242
"open_the_lock",
4343
"maximum_performance_of_a_team",
44+
"longest_consecutive_sequence",
4445
]
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "longest_consecutive_sequence"
3+
version = "0.1.0"
4+
authors = ["Ryan Li <conbas2019@gmail.com>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
+7
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)