上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 23 下一页
摘要: class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ intSum = ... 阅读全文
posted @ 2015-11-15 23:08 hao.ma 阅读(129) 评论(0) 推荐(0) 编辑
摘要: # 查看静态态依赖库ldd ./nginx #查看安装了哪些模块./nginx -V 阅读全文
posted @ 2015-11-13 21:50 hao.ma 阅读(230) 评论(0) 推荐(0) 编辑
摘要: ./configure --prefix=/home/admin/local/tengine --with-http_stub_status_module --with-http_ssl_module --with-http_upstream_check_module --with-http_con... 阅读全文
posted @ 2015-11-13 21:29 hao.ma 阅读(178) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def isPalindrome(self, x): """ :type x: int :rtype: bool """ if x < 0: return... 阅读全文
posted @ 2015-11-11 19:29 hao.ma 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #php proxytotal sent request num: 507total handle read times: 506506 fetches, 2 max parallel, 2.7129e+06 bytes, in 20 seconds5361.45 mean bytes/fetche... 阅读全文
posted @ 2015-11-11 14:15 hao.ma 阅读(328) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def myAtoi(self, str): """ :type str: str :rtype: int """ intMax=2147483647 intMi... 阅读全文
posted @ 2015-11-10 21:12 hao.ma 阅读(186) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ answer = 0 sign = ... 阅读全文
posted @ 2015-11-09 23:20 hao.ma 阅读(99) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def longestPalindrome(self, s): """ :type s: str :rtype: str """ lenStr = len(s) ... 阅读全文
posted @ 2015-11-08 20:48 hao.ma 阅读(171) 评论(0) 推荐(0) 编辑
摘要: # @link http://www.cnblogs.com/zuoyuan/p/3759682.htmlclass Solution(object): def findMedianSortedArrays(self, nums1, nums2): """ :typ... 阅读全文
posted @ 2015-11-08 02:11 hao.ma 阅读(404) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ if len(s) maxLe... 阅读全文
posted @ 2015-11-06 20:47 hao.ma 阅读(149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 23 下一页