码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode练习:504. Base 7

时间:2017-10-24 00:08:43      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:rip   nta   换问题   pre   join   out   its   color   tput   

Given an integer, return its base 7 string representation.

Example 1:

Input: 100
Output: "202"

 

Example 2:

Input: -7
Output: "-10"

 

Note: The input will be in range of [-1e7, 1e7].

一个七进制转换问题。

var convertToBase7 = function(num) {
    var num1 = Math.abs(num);    
    var i,j;
    var cur; 
    var res =[];
    
    if(num==0 || num==  -0){
        return "0";
    }
    
    while(num1 > 0) {
        res.unshift(num1 % 7);
        num1 = parseInt(num1/7);
    }
    
    if(num >= 0)
    return res.join(‘‘);
    
    if(num < 0){
        res.unshift("-");
        return res.join(‘‘);
    }
    
};

 

leetcode练习:504. Base 7

标签:rip   nta   换问题   pre   join   out   its   color   tput   

原文地址:http://www.cnblogs.com/rimochiko/p/7719710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!