class Solution {
public int[] solution(String[] strlist) {
int[] answer = new int[strlist.length];
for(int i=0; i<strlist.length; i++){
answer[i] = strlist[i].length();
}
return answer;
}
}
'Coding Test > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 점의 위치 구하기 (0) | 2023.03.13 |
---|---|
[프로그래머스/자바] 중복된 숫자 개수 (0) | 2023.03.09 |
[프로그래머스/자바] 개미 군단 (0) | 2023.03.07 |
[프로그래머스/자바] 자릿수 더하기 (0) | 2023.03.07 |
[프로그래머스/자바] 약수의 합('자바 입문' 강의 마지막 문제) (0) | 2023.02.24 |