天才,神奇的数学
class Solution {
public int addDigits(int num) {
return (num - 1) % 9 + 1;
}
}
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
天才,神奇的数学
class Solution {
public int addDigits(int num) {
return (num - 1) % 9 + 1;
}
}