삼각형이 완성되는지 구하는 함수를 구한다
- 단, 배열을 쓰면 안된다.
- 삼각형이 만들어지려면 가장긴변 <= 짧은 변 2개의 합
function solution(a, b, c){
let max;
let multiple;
if(a<b){
max = b
multiple = a+c
if(b<c){
max = c
multiple=a+b
}
}else {
max = a
multiple = b+c
if(a<c){
max = c
multiple = a+b
}
}
if(max > multiple){
return 'NO'
}else return 'YES'
}
console.log(solution(13, 33, 17));
function solution(a, b, c){
let max, answer = 'YES';
let sum = a+b+c;
if(a>b) a = max;
else max = b
if(max < c) max = c;
if((sum-max)<=max) answer = 'NO';
return answer;
console.log(solution(13, 33, 17));