Attention:--------à写给自己及小白看吹牛逼+瞎扯淡:小的Linux小白,在冲往老黑的过程中会遇到麻烦那是必然。想必N多老黑在小白起步时,也都会有抱起服务器/PC狂砸的冲动。在下昨夜就有这种想法。装尼玛一破B系统,从19点开始到凌晨2点还TM启动不了,真是有种砸了眼前的一切..
分类:
其他好文 时间:
2015-02-05 07:05:26
阅读次数:
319
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-02-02 14:15:43
阅读次数:
176
题目链接:Remove Duplicates from Sorted
Array
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 ano...
分类:
其他好文 时间:
2015-02-02 12:34:17
阅读次数:
151
题目如下:
Given a column title as appear in an Excel sheet, return its corresponding column number.
For example:
A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
可...
分类:
其他好文 时间:
2015-02-01 01:59:57
阅读次数:
129
【题目】
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
B -> 2
C -> 3
...
分类:
其他好文 时间:
2015-01-30 17:44:44
阅读次数:
154
Concurrency SimulatorPrograms executed concurrently on a uniprocessor system appear to be executed at the same time, but in reality th...
分类:
其他好文 时间:
2015-01-30 15:34:44
阅读次数:
234
Related toquestion Excel Sheet Column Title
Given a columntitle as appear in an Excel sheet, return its corresponding column number.
For example:
A-> 1
B-> 2
C-> 3
...
Z-> ...
分类:
其他好文 时间:
2015-01-30 09:10:45
阅读次数:
205
【题目】
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-29 15:57:07
阅读次数:
189
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-28 14:37:56
阅读次数:
133
The problem:Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2...
分类:
其他好文 时间:
2015-01-28 12:36:22
阅读次数:
125