DocsCoding TestProgrammers / 길이에 따른 연산Programmers / 길이에 따른 연산Problem Linkhttps://school.programmers.co.kr/learn/courses/30/lessons/181879Description배열의 길이에 따라서 덧샘 연산을 수행하거나 곱셈 연산을 수행Type단순 연산Solution 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 class Solution { public int solution(int[] num_list) { int answer = 0; if (num_list.length >= 11) { for (int i = 0; i < num_list.length; i++) { answer += num_list[i]; } } else { answer = 1; for (int i = 0; i < num_list.length; i++) { answer *= num_list[i]; } } return answer; } }Solution 1Description배열의 길이를 확인한 이후에 연산 수행Time ComplexityO(1)언제나 동일한 연산 수행Space ComplexityO(1)함수의 Paramater 및 지역 변수Programmers / 공배수Programmers / 다음 큰 숫자