Reverse a string, in Rust. ... Create string t containing the same characters as string s, ... Rust. let t = s.chars().rev().collect::<String>(); ...
確定! 回上一頁