String のベクタの場合、そのまま `join` が使える。 ```rust let atcoder = vec!["a", "t", "c", "o", "d", "e", "r"]; println!("{}", atcoder.join(" ")) ```