代码1
Runtime: 7 ms, faster than 15.00% of Java online submissions for Excel Sheet Column Title.
class Solution {
public String convertToTitle(int n) {
return n == 0 ? "" : convertToTitle(--n / 26) + (char)('A' + (n % 26));
}
}
Runtime: 7 ms, faster than 15.00% of Java online submissions for Excel Sheet Column Title.
class Solution {
public String convertToTitle(int n) {
return n == 0 ? "" : convertToTitle(--n / 26) + (char)('A' + (n % 26));
}
}