http://codeinswift.com/swift-cheat-sheet/http://my.oschina.net/ioslighter/blog/361229Basicsprintln("Hello, world")var myVariable = 42 ...
分类:
编程语言 时间:
2015-01-10 23:34:45
阅读次数:
345
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/42554641
Given a positive integer, return its corresponding column title as appear in an Excel sheet.
For example:...
分类:
其他好文 时间:
2015-01-10 13:57:58
阅读次数:
132
如图所示,设置PageName即可: 这样导出excel时,sheet的名就有了:...
分类:
其他好文 时间:
2015-01-09 21:00:16
阅读次数:
232
Related to questionExcel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example: A ...
分类:
其他好文 时间:
2015-01-09 20:47:49
阅读次数:
148
Given a positive integer, return its corresponding column title as appear in an Excel sheet.For example: 1 -> A 2 -> B 3 -> C ... 26 ->...
分类:
其他好文 时间:
2015-01-09 20:46:49
阅读次数:
196
如图所示,设置PageName即可: 这样导出excel时,sheet的名就有了:
分类:
其他好文 时间:
2015-01-09 20:45:17
阅读次数:
195
https://oj.leetcode.com/problems/excel-sheet-column-number/publicclassSolution{
publicinttitleToNumber(Strings){
if(s==null||s.isEmpty())
return0;//invalidinput
char[]chars=s.toCharArray();
intr=0;
for(charc:chars)
{
r=r*26+(c-‘A‘)+1;
}
returnr;
}
}
分类:
其他好文 时间:
2015-01-09 19:31:16
阅读次数:
170
https://oj.leetcode.com/problems/excel-sheet-column-title/http://blog.csdn.net/miss_snow_m/article/details/42098357publicclassSolution{
publicStringconvertToTitle(intn){
if(n<=0)
returnnull;
StringBuildersb=newStringBuilder();
do
{
intd=n%26;
sb.append..
分类:
其他好文 时间:
2015-01-09 19:30:41
阅读次数:
152
CSS:Cascading Style Sheet 层叠样式表CSS作用:就是给HTML页面标签添加各种样式为什么用CSS HTML的缺陷: 1. 不能够适应多种设备 2. 要求浏览器必须智能化足够庞大 3. 数据和显示没有分开 4. 功能不够强大 CSS 优点:1.使数据和显示分开 2.降低网络流...
分类:
Web程序 时间:
2015-01-09 01:27:56
阅读次数:
304
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
28 -> AB
本质就是将...
分类:
编程语言 时间:
2015-01-08 18:09:51
阅读次数:
334