LeetCode/rs/squares-of-a-sorted-array.rs

11 lines
189 B
Rust
Raw Normal View History

impl Solution {
pub fn sorted_squares(mut nums: Vec<i32>) -> Vec<i32> {
for x in &mut nums {
*x *= *x;
}
nums.sort_unstable();
nums
}
}