Given an integer array nums, find the contiguous subarray within an array (containing at least one number) which has the largest product. Example 1: I ...
分类:
其他好文 时间:
2020-09-18 00:08:22
阅读次数:
27
一、docker卸载 1、查询安装过的包 yum list installed | grep docker 2、删除安装的软件包 yum -y remove docker.x86_64 yum -y remove docker-client.x86_64 yum -y remove docker-c ...
分类:
其他好文 时间:
2020-09-17 23:30:56
阅读次数:
33
stringstring2binstring(stringstrSrc){if(strSrc.empty()){return"";}stringstrTemp="0x";stringstrDest;//去掉最开始的0x字符intiNumber=strSrc.find(strTemp);if(iNumber!=NO_FOUND){strSrc=strSrc.substr(2,strSrc.size(
分类:
其他好文 时间:
2020-09-17 23:19:09
阅读次数:
30
1.只查询A表中a、b两字段 db.A.find( {"stage":2,"workStatus":1},//第一个大括号表示查询条件 {"a":1,"b":1}//第二个大括号中字段值为1的表示要显示这些字段 ) 2.不显示a字段,其他字段全显示 db.A.find( {"stage":2,"wo ...
分类:
数据库 时间:
2020-09-17 23:02:49
阅读次数:
39
1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来。cat/etc/passwd|grep-c"/sbin/nologin";cat/etc/passwd|grep"/sbin/nologin"|cut-d:-f12、查出用户UID最大值的用户名、UID及shell类型。cut-d:-f1,3,
分类:
其他好文 时间:
2020-09-17 22:32:47
阅读次数:
25
[root@localhost dpdk-19.11]# cat /proc/meminfo | grep -i huge AnonHugePages: 0 kB ShmemHugePages: 0 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_ ...
分类:
其他好文 时间:
2020-09-17 22:10:17
阅读次数:
29
Hadoop环境搭建 #### 安装前准备 查看防火墙状态,若处于激活(inaction)状态,关闭防火墙 sudo ufw status 查看时间服务器是否运行,若NTP尚未安装就运行安装命令 dpkg -l | grep ntp #检查是否安装 apt-get install ntp #NTP安 ...
分类:
其他好文 时间:
2020-09-17 21:43:01
阅读次数:
32
Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t ...
分类:
编程语言 时间:
2020-09-17 20:29:16
阅读次数:
30