注册一亩三分地论坛,查看更多干货!
您需要 登录 才可以下载或查看附件。没有帐号?注册账号 
x
In MS Excel, the column numbers are named as A, B, C, ......, Z.
If you go beyond this 'Z' column you will encounter AA-->AZ, BA-->BZ, .... ZA-->ZZ then AAA-->AAZ, ABA-->ABZ,
........ and you can imagine how long this sequence can go! The question was to write a function which takes
in a positive integer and returns the character set at that column. For example: if column number is 26 my
function must return 'AA' (0-based index). |