最新 最热

怎样去掉list里重复的数据(多种方法)

去掉list重复的数据,目前总结的以下三种方法,分别是采用set集合来做、两层循环不用任何方法来做,以及一层循环采用contains()方法来做,如下:

2022-01-10
1

Android笔记:软键盘弹出遮盖原来界面的布局控件

如果加上的是 android:windowSoftInputMode="adjustPan"这样键盘就会覆盖屏幕。

2022-01-10
0

Java集合(六) Map接口

hashtable的子类,要求key和value都是string,通常用于配置文件的读取。

2022-01-10
1

Leetcode 题目解析之 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...

2022-01-08
1

Leetcode 题目解析之 4Sum

Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar

2022-01-08
1

Leetcode 题目解析之 3Sum

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all un

2022-01-08
1

python 属性描述符

实现了 __get__、__set__ 或 __delete__ 方法的类是描述符。描述符 的用法是,创建一个实例,作为另一个类的类属性

2022-01-07
0

Java Jackson 如何将数据 push 到 ObjectNode 对象中

有下面 2 种方法来 push 数据。newsletterNode.put("created_at", topicsNode.get("created_at"));newsletterNode.put("external_link", EXTERNAL_LINK_URL + topicsNode.get("id")......

2022-01-07
1

20.32 expect脚本指定host和要同步的文件

expect脚本指定host和要同步的文件set timeout 定义超时时间(单位为 秒) -1 为永远不超时指定host和要同步的文件#!/usr/bin/expectset passwd "123123a"set host [lindex $argv 0]set file [lindex $argv ......

2022-01-06
1

2.20 特殊权限stick_bit

这drwxrwxrwt.里面的t(t里面包含x权限),就是stick_bit权限,

2022-01-06
1