프로그래머스 - 등차수열의 특정한 항만 더하기

JJJ·2023년 5월 2일
0

코딩 기초 트레이닝

목록 보기
25/29
post-custom-banner


풀이

class Solution {
    public int solution(int a, int d, boolean[] included) {
        int answer = 0;
        
        for(int i=0; i<included.length; i++){
            if(included[i]){
                answer+=a+(d*i);
            }
        }
        
        return answer;
    }
}

풀이방법
1) if()문은 true일때만 동작하므로 조건에 included[i]를 넣었다.

profile
Think Talk Act

0개의 댓글