Search posts...
class Solution { public String solution(String my_string, int k) { return my_string.repeat(k); // k 만큼 my_string를 반복 } }
stupefyee