fn main() { println!("Hello, world!"); } struct Solution; impl Solution { pub fn get_concatenation(nums: Vec) -> Vec { let mut result = nums.clone(); result.append(&mut nums.clone()); result } }