알고리즘 13 - Reversed Strings

jabae·2021년 10월 16일
0

알고리즘

목록 보기
13/97

Q.

Complete the solution so that it reverses the string passed into it.

'world' => 'dlrow'

A)

function solution(str){
  let revStr = "";
  for (let i = 0; i < str.length; i++) {
    revStr += str[str.length - 1 - i]
  }
  return revStr;
}

other

메소드를 이렇게 붙여서 바로 리턴하는 게 가능하다.

function solution(str){
  return str.split('').reverse().join('');  
}
profile
it's me!:)

0개의 댓글