码迷,mamicode.com
首页 >  
搜索关键字:highlight    ( 8728个结果
【LeetCode/LintCode】 题解丨字节跳动试题:第k大的子数组
给定一个长度为n的数组a,它有n(n+1)/2??个子数组。请计算这些子数组的和,然后按照升序排列,并返回排序后第k个数。 1≤n≤10?^5 1≤a?i≤10^?9 1≤k≤?n(n+1)/2 在线评测地址:点击此处前往 Example1 Input: [2,3,1,4] 6 Output:5 E ...
分类:编程语言   时间:2020-08-10 11:03:25    阅读次数:93
100盏灯开关的问题
今天朋友发了一个小学五年级的题目,如下: 这小学五年级的题目也太难了吧0.0 用JS的思路来完成这道题目: 1.有100盏灯,开始都是关着的 let arr = new Array(100).fill(0); 可以创建一个长度为100,每项为 0 的数组(0表示关着,1表示开着) 2.第一个学生按1 ...
分类:其他好文   时间:2020-08-07 18:04:52    阅读次数:67
Ubantu 查看显卡信息
1 2 root@ubuntu:/home/ubuntu# lspci |grep -i vga 02:00.0 VGA compatible controller: NVIDIA Corporation GM200 [GeForce GTX TITAN X] (rev a1) 显示当前GPU使用情 ...
分类:其他好文   时间:2020-08-05 14:28:49    阅读次数:79
linux文件与目录(四)
文件搜索命令:find 命令名称:find 命令所在路径:/bin/find 执行权限:所有用户 语法:find [搜索范围][匹配条件] 功能描述:文件搜索 常用选项 -amin<分钟>:查找在指定时间曾被存取过的文件或目录,单位以分钟计算; -anewer<参考文件或目录>:查找其存取时间较指定 ...
分类:系统相关   时间:2020-08-04 23:58:47    阅读次数:88
spark sql/hive小文件问题
针对hive on mapreduce 1:我们可以通过一些配置项来使Hive在执行结束后对结果文件进行合并: 参数详细内容可参考官网:https://cwiki.apache.org/confluence/display/Hive/Configuration+Properties 1 2 3 4 ...
分类:数据库   时间:2020-08-03 19:56:21    阅读次数:103
JQuery 03 CSS
示例 1 : 增加class 通过addClass() 增加一个样式中的class <script src="https://how2j.cn/study/jquery.min.js"></script> <script> $(function(){ $("#b1").click(function( ...
分类:Web程序   时间:2020-08-01 12:32:55    阅读次数:98
Oracle 查询表的索引包含的字段
字段保留在 dba_ind_columns视图中 select a.uniqueness 索引类型,b.index_name 索引名称,b.column_name 字段 from user_indexes a ,user_ind_columns b where a.table_name=b.tabl ...
分类:数据库   时间:2020-07-30 18:27:10    阅读次数:135
EntityFramework Core入门教程-10-视图、存储过程、无主键entity
原文:https://blog.csdn.net/weixin_40719943/article/details/106964140 使用EFCore,不能在数据库中直接操作,需要将视图和存储过程,放到一个migration当中就可以了无主键entity,参考官方文档。 ...
分类:其他好文   时间:2020-07-30 16:42:32    阅读次数:104
初始化list
public static void main(String[] args) { CyclicBarrier cyclicBarrier = new CyclicBarrier(2, () -> { System.out.println(" "); }); List<Integer> list = ...
分类:其他好文   时间:2020-07-29 21:40:00    阅读次数:61
phpexcel图片获取
phpexcel图片获取常见的两种方式: require_once dirname(__FILE__) . '/../Jn/PHPExcel.php'; $filePath = "123.xls"; $inputFileType = PHPExcel_IOFactory::identify($fil ...
分类:Web程序   时间:2020-07-29 17:38:51    阅读次数:81
8728条   上一页 1 ... 21 22 23 24 25 ... 873 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!