Algorithm/codewars

Is this a triangle? 답안

Bonita SY 2021. 3. 23. 20:00
728x90
반응형

문제)

www.codewars.com/kata/56606694ec01347ce800001b/train/javascript

 

Codewars: Achieve mastery through challenge

Codewars is where developers achieve code mastery through challenge. Train on kata in the dojo and reach your highest potential.

www.codewars.com

 

내가 푼 답)

function isTriangle(a,b,c)
{
  var triList = [a, b, c].sort().reverse();
  if (triList[0] < (triList[1] + triList[2])) {
    return true;
  } else {
    return false;
  }
}

 

테스트 결과)

 

참고할 만한 다른 사람 소스)

728x90
반응형

'Algorithm > codewars' 카테고리의 다른 글

Valid Braces 답안  (0) 2021.03.24
Calculating with Functions 답안  (0) 2021.03.24
Exes and Ohs 답안  (0) 2021.03.23
You're a square! 답안  (0) 2021.03.23
Descending Order 답안  (0) 2021.03.23