Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: Solution2: 把数字减一再运算就不用考虑其他问题了。参考了discussion ...
分类:
其他好文 时间:
2016-09-13 07:56:43
阅读次数:
153
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo ...
分类:
其他好文 时间:
2016-09-12 07:21:13
阅读次数:
139
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space fo ...
分类:
其他好文 时间:
2016-09-11 14:19:34
阅读次数:
99
题目: Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example 简单题 ...
分类:
其他好文 时间:
2016-09-11 12:48:44
阅读次数:
112
题目: Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example ...
分类:
其他好文 时间:
2016-09-11 09:03:28
阅读次数:
113
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 ...
分类:
其他好文 时间:
2016-09-09 10:16:20
阅读次数:
166
//主题设置 [[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"tabbar-light"]]; NSDictionary * dict = @{ NSFontAttributeName : [UIFont systemF ...
分类:
移动开发 时间:
2016-09-09 00:46:35
阅读次数:
178
Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3, ...
分类:
其他好文 时间:
2016-09-08 13:07:20
阅读次数:
171
Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: 也可以用递归的: ...
分类:
其他好文 时间:
2016-09-07 12:58:15
阅读次数:
111
题目: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra spac ...
分类:
其他好文 时间:
2016-09-05 18:51:44
阅读次数:
170