摘要:
class Solution(object): def maxArea(self, height): """ :type height: List[int] :rtype: int """ intSum = ... 阅读全文
摘要:
# 查看静态态依赖库ldd ./nginx #查看安装了哪些模块./nginx -V 阅读全文
摘要:
./configure --prefix=/home/admin/local/tengine --with-http_stub_status_module --with-http_ssl_module --with-http_upstream_check_module --with-http_con... 阅读全文
摘要:
class Solution(object): def isPalindrome(self, x): """ :type x: int :rtype: bool """ if x < 0: return... 阅读全文
摘要:
#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... 阅读全文
摘要:
class Solution(object): def myAtoi(self, str): """ :type str: str :rtype: int """ intMax=2147483647 intMi... 阅读全文
摘要:
class Solution(object): def reverse(self, x): """ :type x: int :rtype: int """ answer = 0 sign = ... 阅读全文
摘要:
class Solution(object): def longestPalindrome(self, s): """ :type s: str :rtype: str """ lenStr = len(s) ... 阅读全文
摘要:
# @link http://www.cnblogs.com/zuoyuan/p/3759682.htmlclass Solution(object): def findMedianSortedArrays(self, nums1, nums2): """ :typ... 阅读全文
摘要:
class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ if len(s) maxLe... 阅读全文