28. Implement strStr()【easy】 Implement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of hayst ...
分类:
其他好文 时间:
2017-09-23 20:12:24
阅读次数:
113
344. Reverse String【easy】 Write a function that takes a string as input and returns the string reversed. Example:Given s = "hello", return "olleh". 解法 ...
分类:
其他好文 时间:
2017-09-23 19:02:26
阅读次数:
194
two approaches scala.io.Source 1 . In Scala shell scripts, where the JVM is started and stopped in a relatively short period of time, it may not matte ...
分类:
其他好文 时间:
2017-09-23 17:24:31
阅读次数:
238
class A: pass class B(A): pass isinstance(A(), A) # returns True type(A()) == A # returns True isinstance(B(), A) # returns True type(B()) == A # retu... ...
分类:
其他好文 时间:
2017-09-23 14:27:11
阅读次数:
159
RabbitMQ 实现RPC 实现RPC 首先要弄明白,RPC是个什么东西。 (RPC) Remote Procedure Call Protocol 远程过程调用协议 在一个大型的公司,系统由大大小小的服务构成,不同的团队维护不同的代码,部署在不同的机器。但是在做开发时候往往要用到其它团队的方法, ...
分类:
其他好文 时间:
2017-09-21 13:27:39
阅读次数:
91
函数式(Functional)模型 我们起初将Functional一词译作泛型,想要表达该类模型能够表达任意张量映射的含义,但表达的不是很精确,在Keras2里我们将这个词改移为“函数式”,函数式模型称作Functional,但它的类名是Model,因此有时候也用Model来代表函数式模型。 Ker ...
分类:
其他好文 时间:
2017-09-20 19:26:30
阅读次数:
431
1Function<n>[A[,B,...],T] :a function that takes parameters of type A[,B...], and returns a value of type T. 2=>() :A function that returns Unit is al ...
分类:
其他好文 时间:
2017-09-20 10:30:17
阅读次数:
179
Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio ...
分类:
其他好文 时间:
2017-09-19 23:05:29
阅读次数:
237
最近由于业务需要要写一个生成缩略图并能设置图片质量的功能,本来这是一件so easy的事,以前也干过,可是却遇到了问题。话不多说先看代码 乍一看,代码没有如何问题,那就运行起来吧 TMD竟然报错了,什么原因呢,然后就摆渡了,网上各种方法各种试,都不好使!猫了眯的,怎么回事?最后开始问朋友,朋友也没辙 ...
分类:
其他好文 时间:
2017-09-19 23:05:17
阅读次数:
299
Class类的isAssignableFrom是个不常用的方法,感觉这个方法的名字取得不是很好,所以有必要在此解析一下,以免在看源码时产生歧义,这个方法的签名如下: 由方法签名可见是一个本地方法,即C代码编写的。 以下是JDK中的注释: Determines if the class or inte ...
分类:
其他好文 时间:
2017-09-17 19:33:55
阅读次数:
226