LeetCode 83. Remove Duplicates from Sorted List(删除排序链表中的重复元素) 题目 链接 https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list 问题描述 存在一个按升序排列 ...
分类:
编程语言 时间:
2021-06-04 19:14:00
阅读次数:
0
convertImage.py # 功能 : 将当前工作目录下所有webp格式转为png or jpg # -*- coding: UTF-8 -*- import os from PIL import Image # 返回当前工作目录 CURRENT_PATH = os.getcwd() # 转换 ...
分类:
编程语言 时间:
2021-06-04 19:06:58
阅读次数:
0
列出镜像: docker images REPOSITORY: 镜像所在仓库名称 TAG: 镜像版本 IMAGE ID: 镜像id CREATED: 镜像创建时间 SIZE: 镜像大小 唯一表示一个镜像: repository:tag 或者imageId 网络中搜索需要的镜像: docker sea ...
分类:
其他好文 时间:
2021-06-04 18:47:30
阅读次数:
0
环境: 应用 IP 操作系统 nginx 192.168.23.148 centos8 mysql 192.168.23.142 centos8 php 192.168.23.143 centos8 准备工作 //关闭防火墙与selinux nginx [root@nginx ]# systemct ...
分类:
其他好文 时间:
2021-06-02 17:29:58
阅读次数:
0
Linux 安装 JDK 第一步:检查是否已经安装过JDK # java -version 第二步:检查是否有系统自带安装包 # rpm -qa | grep java 第三步:移除安装包 # yum remove *openjdk* 第四步:登录系统创建安装jdk的目录 第五步:上传JDK到指定安 ...
分类:
系统相关 时间:
2021-06-02 15:47:35
阅读次数:
0
目标 安全 稳定 廉价 快速 容灾 扩展 服务器 基础数据 腾讯云 2核 8GB 5Mbps 安全组配置 开放80、443,允许全部ip访问 开放22、6443,开放当前ip访问 环境 # 卸载firewalld,由安全组统一管理端口 sudo dnf remove firewalld # 关闭交换 ...
分类:
其他好文 时间:
2021-06-02 12:19:37
阅读次数:
0
WPF if (e.RemovedItems.Count>0) { //这里面是你要写的内容 } 具体解决问题: 在你的ComboBox下拉控件中有SelectionChanged事件,页面首次加载时你得SelectionChanged事件会报错, 页面首次加载时你的程序会走SelectionCha ...
分类:
其他好文 时间:
2021-06-02 11:54:33
阅读次数:
0
All packages need to be reinstalled under the new version (4.0). I had to first remove and then reinstall all the packages. The following worked for m ...
分类:
其他好文 时间:
2021-06-02 11:43:04
阅读次数:
0
# 查看已安装dockeryum list installed | grep dockerrpm -qa | grep docker # 卸载旧版本(如果之前安装过的话)yum remove docker \ docker-client \ docker-client-latest \ docker ...
分类:
其他好文 时间:
2021-05-24 15:43:09
阅读次数:
0
1、删除整个列表即删除列表中指定元素 2、指定元素删除pop()方法 返回值为删除的元素 3、指定数据进行删除remove()方法 4、清空列表项 5、综上 del 列表名[i]、pop()、remove()、clear() (1)del 列表名[i] 和pop(i) 都是指定下标进行删除而del ...
分类:
编程语言 时间:
2021-05-24 13:25:23
阅读次数:
0