Leetcode 7 Reverse Integer

1404 단어 LeetCode
Reverse digits of an integer.
Example1: x = 123, return 321Example2: x = -123, return -321
여기를 문자로 바꾸면 거꾸로 하고 숫자로 돌려줍니다.
var reverse = function(x) {

    function rev(n){

        var end = n.length - 1

        var str = ''

        for(;end>=0;end--)

            str += n.charAt(end)

        return str

    }

    var ans = rev(Math.abs(x).toString())

    if(ans > 2147483647) // implicit conversion

        return 0

    if(x<0)

        ans = '-' + ans

    return Number(ans)

}

좋은 웹페이지 즐겨찾기