diff options
author | Orangerot <purple@orangerot.dev> | 2024-06-27 11:30:16 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-06-27 11:30:16 +0200 |
commit | 4b0a6a01b051a4ebfbc17661d14cb23fe4f275fb (patch) | |
tree | 0072cca328fe5adb2ed61004010228ff85e2164d /sort-array-by-parity |
Diffstat (limited to 'sort-array-by-parity')
-rw-r--r-- | sort-array-by-parity/Cargo.toml | 8 | ||||
-rw-r--r-- | sort-array-by-parity/src/main.rs | 22 |
2 files changed, 30 insertions, 0 deletions
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<i32>) -> Vec<i32> { + let mut result = nums.clone(); + result.sort_by_key(|x| x % 2); + result + } +} |