Skip to content

Latest commit

 

History

History
 
 

addDigits

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

各位相加

LeetCode地址

程序

天才,神奇的数学

class Solution {
    public int addDigits(int num) {
        return (num - 1) % 9 + 1;
    }
}