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-05-07 00:27:12
阅读次数:
104
Title:Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3...
分类:
其他好文 时间:
2015-05-06 12:51:16
阅读次数:
99
题目描述
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 for another array, you must do this in ...
分类:
其他好文 时间:
2015-05-04 15:35:18
阅读次数:
140
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-05-04 13:46:54
阅读次数:
126
题目描述:
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, return 1->2->3.
解题思路:
删除链表中...
分类:
其他好文 时间:
2015-05-04 11:57:51
阅读次数:
118
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 for...
分类:
编程语言 时间:
2015-05-03 21:57:40
阅读次数:
132
Write a SQL query to find all numbers that appear at least three times consecutively....
分类:
其他好文 时间:
2015-05-01 17:29:32
阅读次数:
103
Givenapositiveinteger,returnitscorrespondingcolumntitleasappearinanExcelsheet.Forexample:1->A
2->B
3->C
...
26->Z
27->AA
28->ABpublicclassSolution{publicStringconvertToTitle(intn){Stringc="";while(n>0){intx=n%26;if(x==0){c=String.valueO..
分类:
其他好文 时间:
2015-04-29 07:23:44
阅读次数:
118
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,...
分类:
其他好文 时间:
2015-04-29 00:18:28
阅读次数:
171
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2015-04-28 17:50:11
阅读次数:
121