This no longer works: ``` rust s[i+j..].to_string() // s is a &str ``` You now have to write ``` rust (&s[(i+j)..]).to_string() ``` At this point using slice_from is more ergonomic.