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

504. Base 7 (7进制)

时间:2020-05-10 14:50:02      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:not   build   pen   turn   end   leetcode   code   des   color   

package LeetCode_504

/**
 * 504. Base 7 (7进制)
 * https://leetcode.com/problems/base-7/description/
 * Given an integer, return its base 7 string representation.
 * Note: The input will be in range of [-1e7, 1e7].
 * */
class Solution {
    fun convertToBase7(num_: Int): String {
        var num = num_
        if (num == 0) {
            return "0"
        }
        val isNegative = num < 0
        num = Math.abs(num)
        val sb = StringBuilder()
        while (num != 0) {
            sb.append(num % 7)
            num /= 7
        }
        if (isNegative) {
            sb.append("-")
        }
        return sb.reverse().toString()
    }
}

 

504. Base 7 (7进制)

标签:not   build   pen   turn   end   leetcode   code   des   color   

原文地址:https://www.cnblogs.com/johnnyzhao/p/12863021.html

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