LeetCode 0168 - Excel Sheet Column Title
Excel Sheet Column Title
Desicription
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:
1 | 1 -> A |
Example 1:
1 | Input: 1 |
Example 2:
1 | Input: 28 |
Example 3:
1 | Input: 701 |
Solution
1 | class Solution { |