摘要: 1 # -*- coding:utf-8 -*- 2 """用row和col两参数逐行或逐列遍历数组""" 3 class Solution: 4 # array 二维列表 5 def Find(self, target, array): 6 # write code here 7 rows = l 阅读全文
posted @ 2019-05-08 17:31 Parallax 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding:utf-8 -*- 2 # class ListNode: 3 # def __init__(self, x): 4 # self.val = x 5 # self.next = None 6 """没有三个指针解决不了的问题""" 7 class Solution: 阅读全文
posted @ 2019-05-08 02:18 Parallax 阅读(151) 评论(0) 推荐(0) 编辑