--环比去年 and substr(last_sum.dbilldate,1,4) = to_char(add_months(to_date(substr(tmp.dbilldate,1,7),'yyyy-mm'),-12),'yyyy') row_number() over()取最新版本 sele ...
分类:
其他好文 时间:
2021-02-22 12:25:28
阅读次数:
0
JAVA 暴力解法: public final int networkDelayTime(int[][] times, int n, int k) { Map<Integer, List<Integer[]>> map = new HashMap<Integer, List<Integer[]>>( ...
分类:
编程语言 时间:
2021-02-22 12:12:04
阅读次数:
0
统计1-2000000中的素数 php采用的是最版的php7.4 golang采用的是最新版的1.16,开启4个协程 <?php $startTime = time(); $number = 2000000; $primeNumbers = []; for ($i=1;$i<$number;$i++ ...
分类:
Web程序 时间:
2021-02-22 11:53:43
阅读次数:
0
1 // 报错内容 Your project does not reference ".NETFramework,Version=v4.5" framework. Add a reference to ".NETFramework,Version=v4.5" in the "TargetFramew ...
分类:
Web程序 时间:
2021-02-22 11:53:25
阅读次数:
0
减少Docker镜像层的数量Dokcerfile中的RUN、COPY和ADD命令才会创建镜像层,因此减少Docker镜像层的数量就是要减少这几个命令的次数,特别是RUN命令的次数。 在安装工具时可以在一句命令中安装多个工具: 正例: apt-get install -y git curl 反例: a ...
分类:
其他好文 时间:
2021-02-22 11:51:26
阅读次数:
0
知识梳理 简单类型与复杂类型 堆和栈 简单类型的内存分配 复杂类型的内存分配简单类型传参复杂类型传参 一 数据类型分类 1)基本概念 //1 简单数据类型:也称 值类型 又称 基本数据类型string number Boolean undefined nullnull 返回的是对象比较特殊 //2 ...
分类:
其他好文 时间:
2021-02-22 11:45:01
阅读次数:
0
盘点typeScript中的变量数据类型: 1.布尔类型 var isShowComma:boolean=true; 2.字符串类型 var name:string="小舞"; 3.数值类型 var num:number=12345; 4.数组类型 写法一: var arr:number[]=[1, ...
分类:
其他好文 时间:
2021-02-20 12:45:51
阅读次数:
0
995. Minimum Number of K Consecutive Bit Flips In an array A containing only 0s and 1s, a K-bit flip consists of choosing a (contiguous) subarray of l ...
分类:
其他好文 时间:
2021-02-20 12:13:50
阅读次数:
0
Given an integer n, return the number of structurally unique BST's (binary search trees) which has exactly n nodes of unique values from 1 to n. Examp ...
分类:
其他好文 时间:
2021-02-20 12:13:36
阅读次数:
0
文章中若有不严谨或错误的地方,欢迎在评论中指出QAQ Description 题目链接 这是一道交互题,题目给出长度为 \(n\) 的数组 \(a\) ,每次查询的格式为 "? \(l\) \(r\)",其中 \(l\) 和 \(r\) 为查询的区间左端点和右端点,注意 \(l \le r\)。你会 ...
分类:
其他好文 时间:
2021-02-20 12:08:17
阅读次数:
0