码迷,mamicode.com
首页 >  
搜索关键字:end event    ( 41611个结果
leetcode-----40. 组合总和 II
链接:https://leetcode-cn.com/problems/combination-sum-ii/ 代码(dfs) class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int> ...
分类:其他好文   时间:2020-07-06 16:42:37    阅读次数:50
leetcode-473 火柴拼正方形
class Solution { public: bool makesquare(vector<int>& nums) { int l=nums.size(); int sum=0; for(int i=0;i<l;i++) { sum+=nums[i]; } if(sum==0 || (sum/4 ...
分类:其他好文   时间:2020-07-06 16:11:42    阅读次数:36
selenium 模拟浏览器
http://www.testclass.net/selenium_python/mouse-event # class name里不能有空格,需要把空格替换成.悬停操作使用 from selenium.webdriver import ActionChains ActionChains(drive ...
分类:其他好文   时间:2020-07-06 15:57:25    阅读次数:66
Vue图片浏览组件v-viewer使用
简单介绍v-viewer的两种使用方法: 安装依赖: npm install v-viewer --save 全局引入 import Viewer from 'v-viewer' import 'viewerjs/dist/viewer.css' Vue.use(Viewer) 数据格式: 一:点击 ...
分类:其他好文   时间:2020-07-06 14:35:46    阅读次数:143
tkinter的text如何获取和设置内容
tkinter是python自带的图形库,使用之前需要导入该模块,可以使用语句import tkinter as tk 定义一个Text:text=tk.Text() 进行放置,可以用pack,grid,place任意一种方法; 获取Text文本内容:text.get('0.0','end') 该方 ...
分类:其他好文   时间:2020-07-06 12:43:40    阅读次数:217
算法面试题整理
1、python反转字符串 '''第一种:使用字符串切片''' s = 'Hello World' print(s[::-1]) # dlroW olleH '''第二种:使用列表的reverse方法''' l = list(s) l.reverse() print( "".join(l) ) # ...
分类:编程语言   时间:2020-07-06 11:14:23    阅读次数:58
nodejs新进程子进程
获取进程相关的基本信息 #!/bin/env node console.log (process.execPath) console.log (process.cwd()) console.log (process.pid) let user = process.env.USER || "" con ...
分类:Web程序   时间:2020-07-06 10:51:42    阅读次数:69
线性基求交
设有两个线性基 $\alpha,\beta$,如果 $\beta_i$ 能被 $\theta \bigcup \phi, \theta \subseteq \alpha,\phi \subseteq \{\beta_0,\beta_1,...,\beta_{i-1}\}$ 表示,则把 $\theta... ...
分类:其他好文   时间:2020-07-06 10:50:13    阅读次数:53
JVM原理和调优
https://blog.csdn.net/sun1021873926/article/details/78002118?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.com ...
分类:其他好文   时间:2020-07-06 10:43:53    阅读次数:57
临界区对象TCriticalSection(Delphi) 与 TRtlCriticalSection 的区别(转)
临界区对象TCriticalSection(Delphi) 与 TRtlCriticalSection 的区别 TRtlCriticalSection 是一个结构体,在windows单元中定义;是InitializeCriticalSection,EnterCriticalSection,Leave ...
分类:Windows程序   时间:2020-07-06 10:30:45    阅读次数:72
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!