Excel Sheet Column Title
https://leetcode.com/problems/excel-sheet-column-title/
class Solution {
public:
string convertToTitle(int n) {
if(n == 0)
{
return "";
}
return convertToTitle((n-1)/26) + (char)((n-1)%26+'A');
}
};