摘要: # Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): # self.val = x # self.next = None class Solution(object): def removeNthFromEnd(self,... 阅读全文
posted @ 2019-03-13 18:36 anobscureretreat 阅读(186) 评论(0) 推荐(0)
摘要: class Solution(object): def fourSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[List[int]] """ l = len... 阅读全文
posted @ 2019-03-13 18:32 anobscureretreat 阅读(154) 评论(0) 推荐(0)
摘要: class Solution(object): def letterCombinations(self, digits): """ :type digits: str :rtype: List[str] """ if digits == "": return []... 阅读全文
posted @ 2019-03-13 18:24 anobscureretreat 阅读(171) 评论(0) 推荐(0)
摘要: client: server: 参考: https://www.cnblogs.com/suguangti/p/10814737.html https://www.cnblogs.com/huihui0708/p/8594817.html 阅读全文
posted @ 2019-03-13 17:59 anobscureretreat 阅读(221) 评论(0) 推荐(0)
摘要: 进度条 阅读全文
posted @ 2019-03-13 16:44 anobscureretreat 阅读(1087) 评论(0) 推荐(0)
摘要: server client 阅读全文
posted @ 2019-03-13 16:28 anobscureretreat 阅读(277) 评论(0) 推荐(0)
摘要: 发布者 订阅者: 阅读全文
posted @ 2019-03-13 15:53 anobscureretreat 阅读(186) 评论(0) 推荐(0)
摘要: 安装nodejs java 环境变量配置: 安装 Android sdk tools: 安装sdk Appium-desktop的下载&安装 Appium Client的下载&安装 修改如下配置,运行桌面版的appium 启动成功后 连接手机 1.手机用数据线连电脑,如果安装了91助手或者360什么 阅读全文
posted @ 2019-03-13 00:49 anobscureretreat 阅读(198) 评论(0) 推荐(0)
摘要: 下载地址: https://nodejs.org/en/download/ 双击安装 安装完成 打开cmd 阅读全文
posted @ 2019-03-13 00:45 anobscureretreat 阅读(162) 评论(0) 推荐(0)