()
| 9 | // 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 |
| 10 | |
| 11 | fn main() { |
| 12 | println!("{:?}", sort_sentence("is2 sentence4 This1 a3".to_string())); |
| 13 | } |
| 14 | |
| 15 | pub fn sort_sentence(s: String) -> String { |
| 16 | let mut arr = s.split(' ').collect::<Vec<&str>>(); |
nothing calls this directly
no outgoing calls
no test coverage detected