Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Matrix
- 코테
- 파이썬
- greedy
- two pointers
- string
- database
- implement
- 자바
- Counting
- 코딩테스트
- Tree
- Class
- geometry
- simulation
- SQL
- Number Theory
- dynamic programming
- hash table
- sorting
- Stack
- 구현
- Binary Tree
- Method
- array
- Math
- java
- Data Structure
- bit manipulation
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 간단한 논리 연산 본문
1. Input, Output, Example
- (x1 ∨ x2) ∧ (x3 ∨ x4)의 결과를 반환
2. Constraint
없음
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public boolean solution(boolean x1, boolean x2, boolean x3, boolean x4) {
return (x1||x2)&&(x3||x4);
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 문자열 잘라서 정렬하기 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 수열과 구간 쿼리 1 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 수열과 구간 쿼리 3 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 5명씩 (0) | 2023.05.01 |
[프로그래머스/Lv.0] l로 만들기 (0) | 2023.05.01 |