문제) 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; } ..