Search posts...
class Solution { public String solution(String myString) { return myString.replaceAll("[a-k]", "l"); } }
stupefyee