Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
TuDatTr
2023-10-09 01:45:03 +02:00
parent 7510bc2f59
commit 4e36ed6462
44 changed files with 1137 additions and 3 deletions

8
2022/day-5/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "supply_stacks"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

14
2022/day-5/src/lib.rs Normal file
View File

@@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}