会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hao.ma
http://weibo.com/haomase7en
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
23
下一页
2015年11月15日
leetcode Container With Most Water python
摘要: class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ intSum = ...
阅读全文
posted @ 2015-11-15 23:08 hao.ma
阅读(144)
评论(0)
推荐(0)
2015年11月13日
install tool
摘要: # 查看静态态依赖库ldd ./nginx #查看安装了哪些模块./nginx -V
阅读全文
posted @ 2015-11-13 21:50 hao.ma
阅读(237)
评论(0)
推荐(0)
tengine install
摘要: ./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
阅读(187)
评论(0)
推荐(0)
2015年11月11日
leetcode Palindrome Number python
摘要: class Solution(object): def isPalindrome(self, x): """ :type x: int :rtype: bool """ if x < 0: return...
阅读全文
posted @ 2015-11-11 19:29 hao.ma
阅读(138)
评论(0)
推荐(0)
小测试 php代理,nginx代理,直接访问对比
摘要: #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
阅读(335)
评论(0)
推荐(0)
2015年11月10日
leetcode String to Integer (atoi) python
摘要: class Solution(object): def myAtoi(self, str): """ :type str: str :rtype: int """ intMax=2147483647 intMi...
阅读全文
posted @ 2015-11-10 21:12 hao.ma
阅读(189)
评论(0)
推荐(0)
2015年11月9日
leetcode Reverse Integer python
摘要: class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ answer = 0 sign = ...
阅读全文
posted @ 2015-11-09 23:20 hao.ma
阅读(103)
评论(0)
推荐(0)
2015年11月8日
leetcode Longest Palindromic Substring python
摘要: class Solution(object): def longestPalindrome(self, s): """ :type s: str :rtype: str """ lenStr = len(s) ...
阅读全文
posted @ 2015-11-08 20:48 hao.ma
阅读(177)
评论(0)
推荐(0)
leetcode find median sorted arrays python
摘要: # @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
阅读(409)
评论(0)
推荐(0)
2015年11月6日
leetcode Longest Substring Without Repeating Characters python
摘要: class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ if len(s) maxLe...
阅读全文
posted @ 2015-11-06 20:47 hao.ma
阅读(154)
评论(0)
推荐(0)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
23
下一页
公告