<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.0.RELEASE</version> <relativePat ...
分类:
编程语言 时间:
2021-03-01 13:27:44
阅读次数:
0
版本:Openwrt19.07 芯片:MT7268NN 1、在源码 /target/linux/rampis/dts目录中,打开 mt7628an.dtsi 查看注册复用的GPIO gpio: gpio@600 { compatible = "mediatek,mt7621-gpio"; reg = ...
分类:
其他好文 时间:
2021-03-01 13:13:23
阅读次数:
0
题目 要点 其实本题是找所有一个列表中所有元素的公共子集,也就是最小是空集(""),最大是最短元素。那我们则需要比较最小长度的元素和最大长度的元素,看它们有多少相同。 解题 class Solution: def longestCommonPrefix(self, strs: List[str]) ...
分类:
其他好文 时间:
2021-02-25 12:22:33
阅读次数:
0
1. Binding 对数据的转换和校验 Binding 中,有检验和转换关卡。 1.1 数据校验 源码: namespace System.Windows.Data { public class Binding : BindingBase { ... public Collection<Valid ...
题目描述 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 说明: 你可以假设字符串只包含小写字母。 原题请参考链接https://leetcode-cn.com/problems/valid-anagram/ 题解 方法一?【排序】 class Solution: ...
分类:
其他好文 时间:
2021-02-22 12:20:42
阅读次数:
0
Spring Boot2入门 1.使用idea新建一个名为boot的Maven工程。 2.点击右下角的“Enable Auto-Import”选项,idea将会自动下载相关的依赖包。 3.点击boot目录下的pom.xml文件,引入以下依赖: <parent> <groupId>org.spring ...
分类:
编程语言 时间:
2021-02-22 12:18:59
阅读次数:
0
::v-deep .el-table tbody tr:hover > td { background-color: transparent;//去掉hover高亮 } ::v-deep .el-table::before { height: 0;//去掉表格下边框 } ::v-deep .el-t ...
分类:
其他好文 时间:
2021-02-20 12:43:02
阅读次数:
0
原文:Passing State & Calling Functions Between Parent & Children in ReactJS Passing state between components is a common use case. Generally, we use a s ...
分类:
Web程序 时间:
2021-02-20 12:14:04
阅读次数:
0
父类依赖的导入<parent> <groupId>org.example</groupId> <artifactId>dubboDome</artifactId> <version>1.0-SNAPSHOT</version></parent> ...
分类:
其他好文 时间:
2021-02-19 13:11:37
阅读次数:
0
1.fork函数 作用:创建一个子进程 函数原型:pid_t fork(); 返回值: 两个返回值,一个是父进程的返回值,其值为子进程的进程id;一个是子进程的返回值,为0代表创建成功,-1代表创建失败。 循环创建n个进程: 1 #include <stdio.h> 2 #include <unis ...
分类:
系统相关 时间:
2021-02-17 14:48:51
阅读次数:
0