Description: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....
分类:
其他好文 时间:
2015-04-11 23:48:58
阅读次数:
121
Excel Sheet Column Number
Related to question Excel Sheet Column Title
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:
A -> 1...
分类:
其他好文 时间:
2015-04-11 22:38:26
阅读次数:
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 for another array, you must do this in place with...
分类:
其他好文 时间:
2015-04-11 18:02:04
阅读次数:
100
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-04-10 22:03:00
阅读次数:
113
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-04-10 15:34:01
阅读次数:
104
Problem Description
035 now faced a tough problem,his english teacher gives him a string,which consists with n lower case letter,he must figure out how many substrings appear at least twice,moreover,s...
分类:
编程语言 时间:
2015-04-09 15:34:55
阅读次数:
213
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-04-08 19:37:19
阅读次数:
100
Related to question Excel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example: A...
分类:
其他好文 时间:
2015-04-08 19:27:35
阅读次数:
123
题目:
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 pla...
分类:
其他好文 时间:
2015-04-05 22:01:48
阅读次数:
178
Related to questionExcel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example:A -> 1...
分类:
其他好文 时间:
2015-04-05 18:51:24
阅读次数:
129