168. Excel Sheet Column Title
Description
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:

Constraints
Approach
Links
GeeksforGeeks
YouTube
Examples
Input: 1
Output: "A"
Input: 28
Output: "AB"
Input: 701
Output: "ZY"
Solutions
Follow up
Last updated
Was this helpful?