108. 그림 확대 class Solution { public String[] solution(String[] picture, int k) { int height = picture.length; int width = picture[0].length(); int plusHeight = height * k; int plusWidht = width * k; String[] answer = new String[plusHeight]; for(int i=0; i