문제 설명
정수가 담긴 리스트 num_list가 주어질 때, 모든 원소들의 곱이 모든 원소들의 합의 제곱보다 작으면 1을 크면 0을 return하도록 solution 함수를 완성해주세요.
제한 사항
2 ≤ num_list의 길이 ≤ 10 1 ≤ num_list의 원소 ≤ 9
나의 코드
class Solution {
public int solution(int[] num_list) {
int answer = 0;
int sum = 0;
int product = 1;
for(int i=0; i<num_list.length; i++) {
sum += num_list[i];
product *= num_list[i];
}
if(product < sum*sum) {
answer = 1;
} else if(product > sum*sum) {
answer = 0;
}
return answer;
}
}
느낀 점
크게 어려운 점이 없었던 문제! 다른 사람의 풀이 중 stream, 람다식을 이용한 엄청난 숏코드가 존재했는데 아직 내가 범접할 수 없는 레벨같다 ^^,, 기초부터 탄탄히 쌓아보자