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

1 개요[ | ]

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

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

bool solution(bool x1, bool x2, bool x3, bool x4) {
    return (x1 || x2) && (x3 || x4);
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}