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
- java
- 구현
- 코테
- bit manipulation
- 코딩테스트
- Binary Tree
- Number Theory
- Counting
- Math
- two pointers
- Stack
- Binary Search
- 자바
- array
- SQL
- simulation
- geometry
- Tree
- Class
- greedy
- hash table
- Method
- Matrix
- sorting
- string
- 파이썬
- database
- implement
- Data Structure
- dynamic programming
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 길이에 따른 연산 본문
1. Input, Output, Example
- 리스트의 길이가 11 이상이면 리스트에 있는 모든 원소의 합을, 10 이하이면 모든 원소의 곱을 반환
2. Constraint
1) 2 ≤ num_list의 길이 ≤ 20
2) 1 ≤ num_list의 원소 ≤ 9
3. Code
1) 첫 코드(2023/04/24)
class Solution {
public int solution(int[] num_list) {
int answer;
if(num_list.length>10){
answer = 0;
for(int i : num_list)
answer += i;
} else{
answer = 1;
for(int i : num_list)
answer *= i;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] flag에 따라 다른 값 반환하기 (0) | 2023.04.24 |
---|---|
[프로그래머스/Lv.0] 배열 만들기 1 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 첫 번째로 나오는 음수 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 카운트 업 (0) | 2023.04.24 |
[프로그래머스/Lv.0] 조건에 맞게 수열 변환하기 3 (0) | 2023.04.24 |