Leetcode Algorithms -- Excel Sheet Column Title
Excel Sheet Column Title (Easy)
Description
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
1 | For example: |
Analysis
简单题
My Solution
1 | //C++ |
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
1 | For example: |
简单题
1 | //C++ |