-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathExcelSheetColumnTitle.java
More file actions
32 lines (29 loc) · 730 Bytes
/
ExcelSheetColumnTitle.java
File metadata and controls
32 lines (29 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Author: King, wangjingui@outlook.com
Date: Dec 19, 2014
Problem: Excel Sheet Column Title
Difficulty: Easy
Source: https://oj.leetcode.com/problems/excel-sheet-column-title/
Notes:
Given a non-zero positive integer, return its corresponding column title as appear in an Excel sheet.
For example:
1 -> A
2 -> B
3 -> C
...
26 -> Z
27 -> AA
28 -> AB
Solution: 1. Iteration.
2&3. recursion.
*/
public class Solution {
public String convertToTitle(int n) {
StringBuffer sb = new StringBuffer();
while (n > 0) {
sb.insert(0,(char)((n - 1)%26 + 'A'));
n = (n - 1) / 26;
}
return sb.toString();
}
}