Search posts...
class Solution { public String solution(String my_string, int n) { return my_string.substring(0, n); } }
stupefyee