인프런 커뮤니티 질문&답변

Jade Kang님의 프로필 이미지
Jade Kang

작성한 질문수

자바스크립트 알고리즘 문제풀이 입문(코딩테스트 대비)

2. 삼각형 판별하기

이렇게 해도 괜찮나요?

작성

·

160

0

const isItTriangle = (A, B, C) => {
  // Step 1: Construct a function that takes three arguments
  // Step 2: Compare the sum of two values to one arg
  // Step 3: If the sum is greater than the one arg, return true otherwise false
  if (A + B > C && A + C > B && B + C > A) {
    return 'YES';
  } else {
    return 'NO';
  }
}

console.log('Case 1: ' + isItTriangle(6, 7, 11));
console.log('Case 2: ' + isItTriangle(13, 33, 17));

const answer2 = document.querySelector('#q3');
answer2.append(isItTriangle);

답변 1

0

김태원님의 프로필 이미지
김태원
지식공유자

안녕하세요^^

네. 상관없습니다.

Jade Kang님의 프로필 이미지
Jade Kang

작성한 질문수

질문하기