알고리즘 106 - Break camelCase

박진현·2021년 8월 4일
0

알고리즘 (Javascript / C)

목록 보기
106/125

Q.

Description:
Complete the solution so that the function will break up camel casing, using a space between words.

Example
"camelCasing" => "camel Casing"
"identifier" => "identifier"
"" => ""

A)

// complete the function
function solution(string) {
  let toArr = string.split('')
  for (let i = 0; i < toArr.length; i++) {
    if (toArr[i] === toArr[i].toUpperCase()) {
      toArr.splice(i,1," " +toArr[i])
    }
  }
  return toArr.join('')
}
profile
👨🏻‍💻 호기심이 많고 에러를 좋아하는 프론트엔드 개발자 박진현 입니다.

0개의 댓글