168.Excel Sheet Column Title
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:
1 | 1 -> A |
1 | public class Solution { |
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:
1 | 1 -> A |
1 | public class Solution { |