()
| 23 | } |
| 24 | |
| 25 | fn main() { |
| 26 | let order = "cba".to_string(); |
| 27 | let s = "abcd".to_string(); |
| 28 | println!("{:?}", custom_sort_string(order, s)); |
| 29 | let order = "cbafg".to_string(); |
| 30 | let s = "abcd".to_string(); |
| 31 | println!("{:?}", custom_sort_string(order, s)); |
| 32 | } |
nothing calls this directly
no outgoing calls
no test coverage detected