본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 겹치는 선분의 길이

by 올리브영 2023. 3. 25.
728x90
반응형
import java.util.*;
class Solution {
    public int solution(int[][] lines) {
        int[] answer = new int[200];
        int num = 0;
        
        for(int i=0; i<lines.length; i++){
            for(int j=lines[i][0]+100; j<lines[i][1]+100; j++){
                answer[j] +=1;
            }
        }
        
        for(int a:answer){
            if(a>1){
                num++;
            }
        }
        

        return num;
    }
}
728x90
반응형