代码: 1 from PyQt5.QtWidgets import QWidget, QRadioButton, QApplication, QPushButton, QMessageBox, QButtonGroup 2 import sys 3 4 class Example(QWidget): ...
分类:
其他好文 时间:
2020-06-01 00:45:42
阅读次数:
68
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmet ...
分类:
其他好文 时间:
2020-05-31 17:37:36
阅读次数:
56
前端编码规范之:Git使用规范 前端编码规范之:样式(scss)编码规范 前端编码规范之:HTML结构规范 前端编码规范之:Vue最佳实践 前端编码规范之:Javascript编码规范 css/scss命名的原则是:通俗易懂,尽量保持不重复(冲突),尽量不要用id。我比较推崇bootstrap的样式 ...
分类:
Web程序 时间:
2020-05-31 16:23:57
阅读次数:
97
reference: A tutorial for porting to autoconf & automake GNU autoconf (automake) "Hello World" step-by-step example All you should really know about A ...
分类:
其他好文 时间:
2020-05-31 16:04:42
阅读次数:
87
#nignx方向代理 ##proxy_pass 字符串匹配情况 ####example 1: location /name/ { proxy_pass http://127.0.0.1/remote/; } proxy指定了uri,uri将会被代替,请求http://127.0.0.1/name/则 ...
分类:
其他好文 时间:
2020-05-31 15:56:32
阅读次数:
57
####1、将erlang、rabbitmq包上传 ####2、执行 rpm -ivh 包名 ####3、设置配置文件: cp /usr/share/doc/rabbitmq-server-3.4.1/rabbitmq.config.example /etc/rabbitmq/ mv rabbitm ...
分类:
其他好文 时间:
2020-05-31 15:46:03
阅读次数:
85
package com.example.demo; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * 5409. 检查一个字符串是否包含所有 ...
分类:
其他好文 时间:
2020-05-31 13:21:18
阅读次数:
66
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. Example: Input: n = 4, k = 2 Output: [ [2,4], [3,4], [2,3], ...
分类:
其他好文 时间:
2020-05-31 13:17:49
阅读次数:
57
package com.example.demo; /** * 5424. 数组中两元素的最大乘积 显示英文描述 * 通过的用户数 219 * 尝试过的用户数 244 * 用户总通过次数 230 * 用户总提交次数 261 * 题目难度 Easy * 给你一个整数数组 nums,请你选择数组的两个不 ...
分类:
编程语言 时间:
2020-05-31 12:43:28
阅读次数:
45
接着《Cocos Creator 通用框架设计 —— 资源管理》聊聊资源管理框架后续的一些优化: 通过论坛和github的issue,收到了很多优化或bug的反馈,基本上抽空全部处理了,大概做了这么一些事情。 https://github.com/wyb10a10/cocos_creator_fra ...
分类:
其他好文 时间:
2020-05-31 00:43:56
阅读次数:
70