文章 2015-08-15 来自:开发者社区

[LeetCode] Excel Sheet Column Title

Well, this problem can be solved in 1-line clearly. Take a look at this link :-) 1 class Solution { 2 public: 3 string convertToTitle(int n) { 4 return !n ? "" : convertToTitle((n - 1) /...

文章 2015-01-29 来自:开发者社区

[LeetCode]168.Excel Sheet Column Title

【题目】 Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 1 -> A 2 -> B 3 -> C ... 26 -> Z 27 -> AA ...

本页面内关键词为智能算法引擎基于机器学习所生成,如有任何问题,可在页面下方点击"联系我们"与我们沟通。