package com.wing.zx.cloud.system.modular.system.controller; public class Solution { /** * 每次进行取余操作 ( %10),取出最低的数字:y = x % 10 * 将最低的数字加到取出数的末尾:revertNu ...
分类:
其他好文 时间:
2020-07-01 09:21:23
阅读次数:
61
package LeetCode_210 import java.util.* import kotlin.collections.ArrayList /** * 210. Course Schedule II * https://leetcode.com/problems/course-sched ...
分类:
其他好文 时间:
2020-06-30 22:58:57
阅读次数:
116
之前我们用tomcat源码跑起来了,那么如何加入我们的应用呢?springboot内嵌了tomcat,怎么剥离?如果项目里有websocket配置,又有哪些注意项?好,我们看一下操作。 1、要剥离springboot的内嵌tomcat,先修改pom.xml: 1.1、新增 <dependency> ...
分类:
编程语言 时间:
2020-06-30 22:21:29
阅读次数:
69
Extracting keywords from texts has become a challenge for individuals and organizations as the information grows in complexity and size. The need to a ...
分类:
其他好文 时间:
2020-06-30 20:36:13
阅读次数:
83
//是否为空 /** * null undefined NaN false " " {} [] 为空 * 为空 true 不为空 false * @param {*} value 参数 * */ isEmpty(value) { let a = false; if (Object.prototype ...
分类:
编程语言 时间:
2020-06-30 17:23:01
阅读次数:
109
cnblogs.com/fellow1988/p/6212676.html 看了个大概 Platform是一种虚拟总线,Platform机制将设备本身的资源注册进内核,有内核统一管理,在驱动程序使用这些资源时使用统一的接口,这样提高了程序的可移植性。 Linux的大部分设备驱动都可以使用platfo ...
分类:
其他好文 时间:
2020-06-30 11:22:05
阅读次数:
64
问题: 给定由0,1构成的数组,求由1构成的(各种长度边长的)正方形的总个数有多少。 Example 1: Input: matrix = [ [0,1,1,1], [1,1,1,1], [0,1,1,1] ] Output: 15 Explanation: There are 10 squares ...
分类:
其他好文 时间:
2020-06-29 20:05:12
阅读次数:
61
1:找个容器: .container { display: flex | inline-flex; //可以有两种取值:块元素,行内元素 } 2:容器的设置: .container { flex-direction: row | row-reverse | column | column-rever ...
分类:
其他好文 时间:
2020-06-29 13:17:23
阅读次数:
63
C++ 11提供了一个特殊版本的 for 循环,在很多情况下,它都可以简化数组的处理,这就是基于范围的 for 循环。在使用基于范围的 for 循环处理数组时,该循环可以自动为数组中的每个元素迭代一次。例如,如果对一个 8 元素的数组使用基于范围的 for 循环,则该循环将迭代 8 次。因为基于范围 ...
分类:
编程语言 时间:
2020-06-28 22:42:44
阅读次数:
74
11g 查找trace文件 SELECT D.VALUE || '/' || LOWER(RTRIM(I.INSTANCE, CHR(0))) || '_ora_' || P.SPID || '.trc' TRACE_FILE_NAME FROM (SELECT P.SPID FROM SYS.V$ ...
分类:
其他好文 时间:
2020-06-28 10:02:51
阅读次数:
82