Make the IPAddr type implement fmt.Stringer to print the address as a dotted quad. For instance, IPAddr{1, 2, 3, 4} should print as "1.2.3.4". 1 packa... ...
分类:
其他好文 时间:
2017-06-19 13:02:46
阅读次数:
245
Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For example, Given sorted array A = [1,1,1,2,2,3], Your function shou ...
分类:
其他好文 时间:
2017-06-19 12:56:26
阅读次数:
141
项目移植到服务器,结果悲剧的出问题了,就一直报Class xxx does not exist,本地正常,但是已提交服务器就出错。想了十了分钟小时没有结果,突然灵感一来,原来是文件名的问题,怪自己粗心大意了。写个随笔记录一下。 Linux 系统是大小写敏感的,而 Windows 系统和 Mac 系统 ...
分类:
其他好文 时间:
2017-06-19 12:51:11
阅读次数:
177
前言 最近接手的一些项目,不同的人编码风格迥异,类里的变量、方法的定义穿插,注释极为稀少,更有一些变量和方法的命名非常近似,例如表示播放队列的"playQueue"和表示歌单的"playList",wtf? 这不是一个意思吗?一些回调的时机也不能直观的看出来,通常需要debug调试多次;multi ...
分类:
其他好文 时间:
2017-06-18 23:35:10
阅读次数:
142
题目链接 Problem Description The Old Frog King lives on the root of an infinite tree. According to the law, each node should connect to exactly two nodes ...
分类:
其他好文 时间:
2017-06-18 20:47:29
阅读次数:
239
ι 版权声明:本文为博主原创文章,未经博主允许不得转载。 Looper在Android的消息机制中就是用来进行消息循环的。它会不停地循环,去MessageQueue中查看是否有新消息,如果有消息就立刻处理该消息,否则就一直等待。 Looper中有一个属性: 这也就解释了,前面我们所说的我们可以通过T ...
分类:
移动开发 时间:
2017-06-18 20:01:37
阅读次数:
237
题目: Given a group of two strings, you need to find the longest uncommon subsequence of this group of two strings. The longest uncommon subsequence is ...
分类:
编程语言 时间:
2017-06-18 18:13:52
阅读次数:
163
(原) 在上一篇,用到过这样一个方法: 这里重点看List的foreach方法; 该方法属于Iterable接口,并且是1.8新加的方法,它有一个默认的实现方法,用关键字default修饰,也就是说,在JDK1.8里,接口方不再必需是抽象方法了,而是可以有实现体的,并且这个有实现体的方法需要用def ...
分类:
编程语言 时间:
2017-06-18 15:11:41
阅读次数:
500
itertools模块:处理可迭代对象 chain()和islice()、tee() chain:合并迭代器 islice:切割迭代器,start,end,step tee:复制迭代器,新迭代器共享输入迭代器, 新迭代器之间不影响 startmap() count()、cycle()、repeat( ...
分类:
编程语言 时间:
2017-06-18 14:16:00
阅读次数:
171
1. LeetCode(twoCode) Given an array of integers, find two numbers such that they add upto a specific target number. The function twoSum should return ...
分类:
其他好文 时间:
2017-06-18 13:25:16
阅读次数:
134