From 4b0a6a01b051a4ebfbc17661d14cb23fe4f275fb Mon Sep 17 00:00:00 2001 From: Orangerot Date: Thu, 27 Jun 2024 11:30:16 +0200 Subject: Initial commit --- sort-array-by-parity/Cargo.toml | 8 ++++++++ sort-array-by-parity/src/main.rs | 22 ++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 sort-array-by-parity/Cargo.toml create mode 100644 sort-array-by-parity/src/main.rs (limited to 'sort-array-by-parity') diff --git a/sort-array-by-parity/Cargo.toml b/sort-array-by-parity/Cargo.toml new file mode 100644 index 0000000..c67befb --- /dev/null +++ b/sort-array-by-parity/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "sort-array-by-parity" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/sort-array-by-parity/src/main.rs b/sort-array-by-parity/src/main.rs new file mode 100644 index 0000000..6deb88d --- /dev/null +++ b/sort-array-by-parity/src/main.rs @@ -0,0 +1,22 @@ +fn main() { + println!("Hello, world!"); + + let tests = [ + vec![3,1,2,4], + vec![0] + ]; + + for test in tests { + println!("{:?} {:?}", test, Solution::sort_array_by_parity(test.clone())); + } +} + +struct Solution; + +impl Solution { + pub fn sort_array_by_parity(nums: Vec) -> Vec { + let mut result = nums.clone(); + result.sort_by_key(|x| x % 2); + result + } +} -- cgit v1.2.3