上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
摘要: class Solution(object): def letterCombinations(self, digits): """ :type digits: str :rtype: List[str] """ if len... 阅读全文
posted @ 2015-11-21 00:00 hao.ma 阅读(111) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def threeSumClosest(self, nums, target): """ :type nums: List[int] :type target: int :rtype: in... 阅读全文
posted @ 2015-11-20 20:36 hao.ma 阅读(154) 评论(0) 推荐(0) 编辑
摘要: upstream.confupstream grey_1 ... 阅读全文
posted @ 2015-11-20 15:04 hao.ma 阅读(4089) 评论(0) 推荐(0) 编辑
摘要: http request parameter addhtmlspecialcharshost?vendor_id=1000000&q=Some%20children%20wish%20to%20be%20writers&loc=103.844915%2C36.014027&lang=zh-CN&s=... 阅读全文
posted @ 2015-11-20 12:43 hao.ma 阅读(304) 评论(0) 推荐(0) 编辑
摘要: # sort the array# loop from i = 0 # then left=i+1 right=len(nums)-1# try nums[i] - ( nums[left]+nums[right]) = 0 # class Solution(object): def thre... 阅读全文
posted @ 2015-11-19 23:19 hao.ma 阅读(205) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def longestCommonPrefix(self, strs): """ :type strs: List[str] :rtype: str """ if len(st... 阅读全文
posted @ 2015-11-19 20:17 hao.ma 阅读(178) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def romanToInt(self, s): """ :type s: str :rtype: int """ numerals = { "M": 1000, "D": 5... 阅读全文
posted @ 2015-11-18 22:49 hao.ma 阅读(125) 评论(0) 推荐(0) 编辑
摘要: class Solution(object): def intToRoman(self, num): """ :type num: int :rtype: str """ if num > 3999 or num = val... 阅读全文
posted @ 2015-11-18 22:35 hao.ma 阅读(129) 评论(0) 推荐(0) 编辑
摘要: # add / location /app/ { proxy_pass http://$backend/;}#location /app/ { proxy_pass http://$backend; }1 加斜杠:请求 http://domain/app/demo.ph... 阅读全文
posted @ 2015-11-18 12:44 hao.ma 阅读(708) 评论(0) 推荐(0) 编辑
摘要: $args$content_length$content_type$document_root$document_uri$host$http_user_agent$http_cookie$limit_rate$request_body_file$request_method$remote_addr$... 阅读全文
posted @ 2015-11-16 20:16 hao.ma 阅读(715) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页