Contest Info 传送门 Solved A B C D E F G H I J K 8 / 11 Ø O - - Ø - Ø O O Ø O O 在比赛中通过 Ø 赛后通过 ! 尝试了但是失败了 - 没有尝试 Solutions A. Access Points 题意: 二维平面中给定$n$ ...
分类:
其他好文 时间:
2020-06-10 22:43:53
阅读次数:
227
ROOT=$(readlink -fn $(dirname $0)/.. )find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs ...
分类:
系统相关 时间:
2020-06-10 19:22:10
阅读次数:
94
写代码时,要写这么一个功能: 将包名中的"."换成路径分隔符("/"或"",视操作系统而定),要求在window或linux下都能正常运行。 分析一下,这明显是个字符串替换的操作,可用使用String提供的replace方法;换成操作系统指定的路径分隔符,可以使用File.separator来完成, ...
分类:
编程语言 时间:
2020-06-09 09:38:58
阅读次数:
86
1、为什么会出现跨域问题 官方文档:https://docs.microsoft.com/zh-cn/aspnet/core/security/cors?view=aspnetcore-3.1 浏览器安全的基石是"同源政策"(same-origin policy)。同源指三个相同 ①协议相同 ②域名 ...
分类:
数据库 时间:
2020-06-08 10:43:56
阅读次数:
374
Give this: We have a wrongn classified point, how to move the line to come closer to the points? We apply learning rate and since wrong point is in po ...
分类:
其他好文 时间:
2020-06-08 00:57:01
阅读次数:
82
Callback API 用于跟踪epoch期间各种状态的回调函数。主要有6个类: 1. mxnet.callback.module_checkpoint(mod, prefix, period=1, save_optimizer_states=False) [source] 参数: mod:Bas ...
目前常见读写Excel的工具类开源javaAPI有两种方式,一个是JXL(Java Excel API) 官网地址:http://jexcelapi.sourceforge.net/一个是Apache的POI(Poor Obfuscation Implementation)官网地址:http://p ...
startup.cs文件 app.UseEndpoints(endpoints => { endpoints.MapControllerRoute( name: "Areas", pattern: "{area:exists}/{controller=Index}/{action=Index}/{i ...
分类:
其他好文 时间:
2020-06-07 11:22:29
阅读次数:
84
jQuery Mobile 滑动条控件 滑动条允许您从一个范围的数字中选择一个值: 如需创建滑动条,请使用 <input type="range">: 实例 <form method="post" action="demoform.php"> <label for="points">进度:</lab ...
分类:
Web程序 时间:
2020-06-07 10:49:11
阅读次数:
80
1,安装 下载生成证书工具 wget https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 wget https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64 wget https://pkg.cfssl.org/R1.2/ ...
分类:
其他好文 时间:
2020-06-05 23:19:17
阅读次数:
78