一、基础 1、 定义节点类 # Definition for a binary tree node. class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None 2、给定一张图 二、基础 ...
分类:
编程语言 时间:
2020-06-13 13:04:01
阅读次数:
55
206. 反转链表 反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 进阶: 你可以迭代或递归地反转链表。你能否用两种方法解决这道题? class Node(): def __init__(self, data): self.v ...
分类:
其他好文 时间:
2020-06-13 12:46:44
阅读次数:
59
解决方法: 修改 WebDriverAgentLib/Utilities/FBFailureProofTestCase.m 第26行 self.internalImplementation = (_XCTestCaseImplementation *)[FBXCTestCaseImplementat ...
分类:
移动开发 时间:
2020-06-13 12:41:10
阅读次数:
172
转自:http://blog.sina.com.cn/s/blog_53d318170102wvnm.html 背景 将odoo服务器部署在公网上, 服务器没有公网地址, 前端使用nginx提供对外服务的公网ip和tcp端口 qweb-html类型的报表能正常在浏览器上显示,但打印时浏览器上出现如下 ...
分类:
其他好文 时间:
2020-06-13 11:13:27
阅读次数:
67
class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = Nonefrom typing import Listclass Solution: # 迭代的想法 def levelOrderBot ...
分类:
其他好文 时间:
2020-06-13 00:42:24
阅读次数:
46
<field name="date_order" string="开始时间" filter_domain="[('date_order','>',self)]"/> <field name="date_order" string="结束时间" filter_domain="[('date_order ...
分类:
其他好文 时间:
2020-06-13 00:18:51
阅读次数:
164
class Solution(object): def threeSum(self, nums): res_list=[] nums.sort() for i in range(len(nums)): if(nums[i]>0): break if i>0 and nums[i]==nums[i-1 ...
分类:
其他好文 时间:
2020-06-13 00:12:53
阅读次数:
120
两个例子: 使用模板 from django.shortcuts import render, HttpResponse from rest_framework.views import APIView class Order(APIView): def get(self, request, *ar ...
分类:
其他好文 时间:
2020-06-12 22:59:34
阅读次数:
104
super()有参数写法: # 1.定义父类 class A(object): def __init__(self): self.num = 1 def info_print(self): print(self.num) class C(A): def __init__(self): self.nu ...
分类:
编程语言 时间:
2020-06-12 20:19:47
阅读次数:
99
一、QPushButton控件 QAbstractButton是所有按钮空间的父类,提供了一系列按钮共用方法。 1.按钮的可选中状态 QPushButton虽然是一个普通按钮,但也可以由checkbox那样的选中状态(按下和弹起)。 def initUI(self): button1 = QPush ...
分类:
编程语言 时间:
2020-06-12 17:34:08
阅读次数:
82