알고리즘 15 - Shortest Word

박진현·2021년 7월 14일
0

Q.

Simple, given a string of words, return the length of the shortest word(s).

String will never be empty and you do not need to account for different data types.

A)

function findShort(s){
  let arr = s.split(' ')
  return arr.reduce((a,b) => {
    if(a.length < b.length) {
      return a
      }
    else {
      return b
    }
  }).length
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글