[프로그래머스]배열 원소의 길이

정선모·2022년 10월 18일
1

프로그래머스

목록 보기
74/91

항상 length를 구하는 방식은 헷갈리는 것 같습니다. String은 length()!

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;
    }
}
profile
개발자가 되어가는 비전공자

0개의 댓글