输入年月日,判断这个日期是这一年的第几天。 方案一:不使用标准库中的模块和函数。 def is_leap_year(year): """判断指定的年份是不是闰年,平年返回False,闰年返回True""" return year % 4 == 0 and year % 100 != 0 or yea ...
分类:
编程语言 时间:
2021-06-07 21:16:16
阅读次数:
0
toThousandFilter(num) { return (+num || 0).toFixed(2).replace(/\d{1,3}(?=(\d{3})+(\.\d*)?$)/g, '$&,') } ...
分类:
其他好文 时间:
2021-06-07 21:05:36
阅读次数:
0
封装类 public class HttpRequest { /** * 向指定URL发送GET方法的请求 * * @param url * 发送请求的URL * @param param * 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 * @return ...
分类:
编程语言 时间:
2021-06-07 21:04:17
阅读次数:
0
简介 简单题, 但是挺考验java数据结构的 code class Solution { public int[][] merge(int[][] intervals) { if (intervals.length == 0) { return new int[0][2]; } Arrays.sor ...
分类:
其他好文 时间:
2021-06-07 20:43:01
阅读次数:
0
IIS短文件名泄露漏洞检测 http://www.xxxx.com/*~1****/a.aspx http://www.xxxx.com/l1j1e*~1****/a.aspx If the first one return an HTTP 404 and the second one return ...
分类:
其他好文 时间:
2021-06-07 20:37:21
阅读次数:
0
The production process of sand making machine is mainly as: (stock bin) - feeder - jaw crusher - impact crusher - vibrating screen - (finished product... ...
分类:
系统相关 时间:
2021-06-07 20:28:50
阅读次数:
0
例2引入了Region的概念。 例1中我们提到bootstrapper与app.xaml.cs,现在是这样的: public partial class App : PrismApplication { protected override Window CreateShell() { return ...
分类:
其他好文 时间:
2021-06-07 20:28:38
阅读次数:
0
494. 目标和 一看数据最多才20个,直接暴力DFS感觉能过,没想到真过了o(╯□╰)o class Solution { int ans = 0; public int findTargetSumWays(int[] nums, int target) { int n = nums.length ...
分类:
其他好文 时间:
2021-06-07 20:19:24
阅读次数:
0
一、函数 Go 语言函数定义格式如下: func function_name( [parameter list] ) [return_types] { 函数体 } 函数定义解析: func:函数由 func 开始声明 function_name:函数名称,参数列表和返回值类型构成了函数签名。 par ...
分类:
其他好文 时间:
2021-06-07 20:06:13
阅读次数:
0
顺序存储二叉树详解 说明 顺序存储二叉树,即将一颗完全二叉树按照从上到下,从左到右的顺序存储到一个数组中,因为数组是顺序存储的结构,因此称为顺序存储二叉树 给二叉树中各节点用 n 编号,从零开始,一直到最后 一个节点,对应于数组位置 假设当前节点的编号为 n ,那么当前节点的左子节点编号为 2 * ...
分类:
其他好文 时间:
2021-06-06 19:48:20
阅读次数:
0