题目: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 思路:
题意:求对应的数字和字...
分类:
其他好文 时间:
2016-04-19 20:03:01
阅读次数:
118
Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements ...
分类:
其他好文 时间:
2016-04-19 14:18:58
阅读次数:
179
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-04-18 11:24:36
阅读次数:
149
题目: 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 -> A... ...
分类:
编程语言 时间:
2016-04-17 17:40:11
阅读次数:
152
Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. Find the two elements ...
分类:
其他好文 时间:
2016-04-14 20:51:39
阅读次数:
143
Given a positive integer, return its corresponding column title as appear in an Excel sheet. For example: ...
分类:
其他好文 时间:
2016-04-14 01:28:28
阅读次数:
176
Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding column number. For example: Cr ...
分类:
其他好文 时间:
2016-04-13 12:53:02
阅读次数:
119
Discussion and Conclusion After viewing these maps, what should immediately appear is the level of racial segregation into high and low levels of educ ...
分类:
其他好文 时间:
2016-04-11 14:13:10
阅读次数:
1318
Golden rule Every line of code should appear to be written by a single person, no matter the number of contributors. 1.Syntax Use soft tabs with two s ...
分类:
Web程序 时间:
2016-04-10 12:55:23
阅读次数:
258
题目来源 https://leetcode.com/problems/remove-duplicates-from-sorted-list/ Given a sorted linked list, delete all duplicates such that each element appear ...
分类:
编程语言 时间:
2016-04-08 11:55:58
阅读次数:
149