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
- Method
- sorting
- hash table
- Tree
- database
- 파이썬
- Matrix
- two pointers
- java
- greedy
- implement
- 코딩테스트
- Binary Tree
- 구현
- 자바
- string
- Class
- bit manipulation
- Math
- Binary Search
- Number Theory
- Data Structure
- Stack
- dynamic programming
- array
- geometry
- 코테
- simulation
- SQL
- Counting
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] flag에 따라 다른 값 반환하기 본문
1. Input, Output, Example
- flag가 true면 a + b를, false면 a - b를 반환
2. Constraint
1) -1000 ≤ a, b ≤ 1,000
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int solution(int a, int b, boolean flag) {
return flag ? a+b : a-b;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 부분 문자열인지 확인하기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 조건에 맞게 수열 변환하기 1 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 배열 만들기 1 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 길이에 따른 연산 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 첫 번째로 나오는 음수 (0) | 2023.04.24 |