[Algorithm log] findShortestOfThreeWords
2020. 1. 14. 23:35
문자열의 길이가 가장 짧은 문자열 찾기. sol 1) 첫번째 파라미터를 가장작은 길이의 문자열로 생각하고 두번째, 세번째 파라미터와 비교한다. function findShortestOfThreeWords(one,two,three){ let shortest = one; if(shortest.length > two.length){ shortest = two; } if(shortest.length > three.length){ shortest = three; } return shortest; } sol 2) 파라미터들을 배열로 넣고 reduce를 이용하여 비교한다. function findShortestOfThreeWords(one,two,three){ let arr = []; arr.push(one,two,..