rust-algorithms:16-字符逆序

Rust
379
0
0
2022-11-10
pub fn reverse(text: &str) -> String {
    // rust的char比较古怪,必定是Unicode,占据四个字节 
    // 排序的话可以参考之前的数值排序,这里直接使用API即可
    text.chars().rev().collect()
}