返回介绍

solution / 1800-1899 / 1837.Sum of Digits in Base K / README_EN

发布于 2024-06-17 01:03:14 字数 3169 浏览 0 评论 0 收藏 0

1837. Sum of Digits in Base K

中文文档

Description

Given an integer n (in base 10) and a base k, return _the sum of the digits of _n_ after converting _n_ from base _10_ to base _k.

After converting, each digit should be interpreted as a base 10 number, and the sum should be returned in base 10.

 

Example 1:

Input: n = 34, k = 6
Output: 9
Explanation: 34 (base 10) expressed in base 6 is 54. 5 + 4 = 9.

Example 2:

Input: n = 10, k = 10
Output: 1
Explanation: n is already in base 10. 1 + 0 = 1.

 

Constraints:

  • 1 <= n <= 100
  • 2 <= k <= 10

Solutions

Solution 1: Mathematics

We divide $n$ by $k$ and take the remainder until it is $0$. The sum of the remainders gives the result.

The time complexity is $O(\log_{k}n)$, and the space complexity is $O(1)$.

class Solution:
  def sumBase(self, n: int, k: int) -> int:
    ans = 0
    while n:
      ans += n % k
      n //= k
    return ans
class Solution {
  public int sumBase(int n, int k) {
    int ans = 0;
    while (n != 0) {
      ans += n % k;
      n /= k;
    }
    return ans;
  }
}
class Solution {
public:
  int sumBase(int n, int k) {
    int ans = 0;
    while (n) {
      ans += n % k;
      n /= k;
    }
    return ans;
  }
};
func sumBase(n int, k int) (ans int) {
  for n > 0 {
    ans += n % k
    n /= k
  }
  return
}
function sumBase(n: number, k: number): number {
  let ans = 0;
  while (n) {
    ans += n % k;
    n = Math.floor(n / k);
  }
  return ans;
}
impl Solution {
  pub fn sum_base(mut n: i32, k: i32) -> i32 {
    let mut ans = 0;
    while n != 0 {
      ans += n % k;
      n /= k;
    }
    ans
  }
}
/**
 * @param {number} n
 * @param {number} k
 * @return {number}
 */
var sumBase = function (n, k) {
  let ans = 0;
  while (n) {
    ans += n % k;
    n = Math.floor(n / k);
  }
  return ans;
};
int sumBase(int n, int k) {
  int ans = 0;
  while (n) {
    ans += n % k;
    n /= k;
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文