[프로그래머스] 간단한 논리 연산

Seah Lee·2023년 6월 23일
0

프로그래머스

목록 보기
28/57

class Solution {
    public boolean solution(boolean x1, boolean x2, boolean x3, boolean x4) {
        return ((x1||x2)&&(x3||x4));
    }
}

easy ~

profile
성장하는 개발자

0개의 댓글