最新 最热

Backtracking - 216. Combination Sum III

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique s...

2020-09-23
1

Backtracking - 60. Permutation Sequence

The set [1,2,3,...,_n_] contains a total of n! unique permutations.

2020-09-23
1

parentheses - 22. Generate Parentheses

Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.

2020-09-23
1

Array - 128. Longest Consecutive Sequence

Given an unsorted array of integers, find the length of the longest consecutive elements sequence.

2020-09-23
1

PyQt5 技术篇-设置下拉框默认值,获取当前选择的内容

setCurrentIndex() 就可以通过索引设置当前内容为items里的某个值,从0开始。 例:“2"就代表"脚本管理”

2020-09-23
0

PyQt5 技巧篇-复选框绑定行内容,全选、清空、展示选中的内容功能实现演示,设置复选框选中,检查复选框选中状态

我设置两个有序序列,分别存储对应的复选框和行内容。 我的行内容是用的label标签。

2020-09-22
1

5秒解决:VMware Workstation 与 Hyper-V 不兼容

解决办法: 以管理员身份运行命令提示符 执行 bcdedit /set hypervisorlaunchtype off 重启即可。

set
2020-09-22
0

java线程池(二):聊聊newFixedThreadPool(1)和newSingleThreadExecutor()的区别

在第一部分中介绍完java中Executors的线程池创建的方式之后,实际上有一个非常好奇的问题。既然newFixedThreadPool(1)也能保证创建只有一个线程运行的线程池,那么为什么还需要一个newSingleThreadExecutor()方法呢?带着...

2020-09-17
1

python第十一课——转换结构

3.转换函数:int():float():str():list():tuple():set():dict():bool():案例:#演示各个转换函数的使用:数值型-->字符型使用:str()

2020-09-16
0

组合数学-抽屉原理

抽屉原理又称鸽巢原理:把 n+1个物品放进 n个盒子里,那么至少有一个盒子包含两个及以上的物品。

2020-09-15
1