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
- 코테
- Counting
- Data Structure
- 자바
- database
- Tree
- SQL
- Binary Search
- Binary Tree
- java
- hash table
- two pointers
- Class
- dynamic programming
- simulation
- 구현
- Method
- string
- implement
- bit manipulation
- greedy
- geometry
- Math
- Number Theory
- sorting
- array
- Stack
- 코딩테스트
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 조건 문자열 본문
1. Input, Output, Example
문자열에 따라 다음과 같이 두 수의 크기를 비교하려고 한다.
// ">", "=" : n >= m
// "<", "=" : n <= m
// ">", "!" : n > m
// "<", "!" : n < m
- n과 m이 ineq와 eq의 조건에 맞으면 1을 아니면 0을 반환
2. Constraint
1) 1 ≤ n, m ≤ 100
2) ineq는 "<"와 ">"중 하나고, eq는 "="와 "!"중 하나
3. Code
1) 첫 코드(2023/05/01)
class Solution {
public int solution(String ineq, String eq, int n, int m) {
int answer = 0;
if(ineq.equals(">")){
if(eq.equals("=")) answer = n>=m ? 1 : 0;
else answer = n>m ? 1 : 0;
} else{
if(eq.equals("=")) answer = n<=m ? 1 : 0;
else answer = n<m ? 1 : 0;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 수열과 구간 쿼리 2 (0) | 2023.05.01 |
---|---|
[프로그래머스/Lv.0] 리스트 자르기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 문자열이 몇 번 등장하는지 세기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 빈 배열에 추가, 삭제하기 (0) | 2023.05.01 |
[프로그래머스/Lv.0] 세 개의 구분자 (0) | 2023.05.01 |