原题 1 class Solution: 2 def summaryRanges(self, nums: List[int]) -> List[str]: 3 left,right,lens,ans = 0,0,len(nums),[] 4 while left < lens: 5 right = ...
分类:
其他好文 时间:
2021-02-15 11:47:09
阅读次数:
0
语法 window.open(URL,name,specs,replace) 参数说明 URL 可选。打开指定的页面的URL。如果没有指定URL,打开一个新的空白窗口 name 可选。指定target属性或窗口的名称。支持以下值: _blank - URL加载到一个新的窗口。这是默认 _parent ...
HTML 基本框架 <!doctype html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>无标题文档</title> </head> <body> </body> </html> iframe内联框架 <iframe src ...
分类:
编程语言 时间:
2021-02-10 12:56:07
阅读次数:
0
原题 1 class Solution: 2 def intersect(self, nums1: List[int], nums2: List[int]) -> List[int]: 3 dic1,dic2 = {},{} 4 def helper(nums,dic): 5 for n in nu ...
分类:
编程语言 时间:
2021-02-10 12:50:25
阅读次数:
0
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 你可以按任意顺序返回答案。 个人答案: class Solution: def twoSum ...
分类:
其他好文 时间:
2021-02-09 12:29:32
阅读次数:
0
在config.xml下添加: <platform name="ios"> <config-file parent="NSCameraUsageDescription" target="*-Info.plist"> <string>需要访问您的相机</string> </config-file> < ...
分类:
移动开发 时间:
2021-02-09 11:54:35
阅读次数:
0
恢复内容开始 # coding:utf-8 """ Name : LeetCode28.py Author : qlb Contect : 17801044486@163.com Time : 2021/2/7 17:17 Desc:实现 strStr() """ class Solution: d ...
分类:
其他好文 时间:
2021-02-08 12:33:47
阅读次数:
0
类的创建 语法 class 类名: pass 类名由一个或多个字母组成,首字母大写,其他字母小写。 直接写在类里的变量,成为类属性。 在类里定义的函数,成为类方法。 class Student: name = '张三' # 类属性 def eat(self): # 实例方法 print(self.n ...
分类:
编程语言 时间:
2021-02-08 11:44:26
阅读次数:
0
#ifndef MYPUSHBUTTON_H #define MYPUSHBUTTON_H #include <QPushButton> class MyPushButton : public QPushButton { Q_OBJECT public: explicit MyPushButton( ...
分类:
其他好文 时间:
2021-02-06 12:12:31
阅读次数:
0
1. 找到/node_modules/sockjs-client/dist/sockjs.js 2.找到代码的 1605行 try { // self.xhr.send(payload); } catch (e) { self.emit('finish', 0, ''); self._cleanup ...
分类:
Web程序 时间:
2021-02-06 11:46:38
阅读次数:
0