0168. Excel Sheet Column Title
https://leetcode.com/problems/excel-sheet-column-title
Description
Given an integer columnNumber
, return its corresponding column title as it appears in an Excel sheet.
For example:
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
1 <= columnNumber <= 231 - 1
ac
Last updated