题目链接:Remove Duplicates from Sorted
List
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, r...
分类:
其他好文 时间:
2015-04-03 17:21:33
阅读次数:
114
题目: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 w...
分类:
其他好文 时间:
2015-04-03 15:18:13
阅读次数:
98
题目:
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 p...
分类:
其他好文 时间:
2015-03-31 10:54:28
阅读次数:
130
题目:
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-03-31 10:53:11
阅读次数:
127
Binary String Matching
时间限制:3000 ms | 内存限制:65535 KB
难度:3
描述Given two strings A and B, whose alphabet consist only ‘0’ and ‘1’. Your task is only to tell how many times does A appear as...
分类:
其他好文 时间:
2015-03-31 09:12:58
阅读次数:
122
Related to questionExcel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column number.For example: A ...
分类:
其他好文 时间:
2015-03-29 00:33:18
阅读次数:
138
I would like to force the overflow icon to always show in the action bar (assuming there are overflow items). On models with a menu button, sometimes the overflow icon doesn‘t appear and users must...
分类:
其他好文 时间:
2015-03-28 20:31:01
阅读次数:
153
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-03-22 00:10:33
阅读次数:
141
Excel Sheet Column Number Total Accepted: 19547 Total Submissions: 52851 My Submissions Question Solution
Related to question Excel Sheet Column TitleGiven a column title as appear in an Excel sheet,...
分类:
其他好文 时间:
2015-03-21 23:00:13
阅读次数:
212
Excel Sheet Column Title Total Accepted: 18284 Total Submissions: 103291 My Submissions Question Solution
Given a positive integer, return its corresponding column title as appear in an Excel sheet.F...
分类:
其他好文 时间:
2015-03-21 23:00:06
阅读次数:
152