码迷,mamicode.com
首页 >  
搜索关键字:merge lists    ( 6727个结果
AWD平台搭建
第一次参加AWD的线上赛,连ssh都没连上,被打的无地自容 之前自己没有参加过AWD的比赛,完全就是一头雾水,主办方要求填写外网的IP,直接闹了个乌龙,把本机IP给报上去了,导致了网页都没访问到 自己搭建个AWD的环境,练习下,下次不要被打的找不到东南西北了 搭建环境 ubuntu18.04 Git ...
分类:其他好文   时间:2021-02-09 11:45:09    阅读次数:0
[loj3463]表达式求值
类似cf582E,先建出表达式树,然后树形dp+离散+min和max卷积的优化,复杂度为$o(nm|E|)$,无法通过 考虑我们仅关心于这$n$个数的大小关系,具体来说,假设给出的数组是$a_{i,j}$(其中$0\le i<m,1\le j\le n$),对于某一个$j$,将$a_{i,j}$从小 ...
分类:其他好文   时间:2021-02-08 11:56:15    阅读次数:0
numpy错误解决方案
VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different le ...
分类:其他好文   时间:2021-02-03 10:42:18    阅读次数:0
LeetCode 56. Merge Intervals题解
Input: intervals = [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into ...
分类:其他好文   时间:2021-01-25 11:29:04    阅读次数:0
php artisan 常用的命令
php artisan 命令是Laravel框架自带的命令,方便用户快速创建、查看对应的模块参数等。 一、常用的命令: php artisan list 查看php artisan所有命令 php artisan --help 查看php artisan的用法 php artisan help ad ...
分类:Web程序   时间:2021-01-22 12:16:11    阅读次数:0
制作docker镜像
编写Dockerfile # 使用哪个镜像为基础 FROM nginx # 安装apt-get后清理垃圾文件 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* # 复制文件 COPY index. ...
分类:其他好文   时间:2021-01-20 11:55:13    阅读次数:0
0088. Merge Sorted Array (E)
Merge Sorted Array (E) 题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements in ...
分类:其他好文   时间:2021-01-13 11:10:22    阅读次数:0
git操作快捷键
ls -a : 可以查看到当前目录下所隐藏的文件,比如 .git文件夹 .git 目录是本地仓库 git config :来配置 git .gitignore : 创建这个文件,里面填写不需要提交到git的文件名,就可以不提交 git init : 会创建.git目录 git add (路径) xx ...
分类:其他好文   时间:2021-01-11 10:47:32    阅读次数:0
pandas合并两个excel到一个excel
import os import pandas as pd # 合并两个excel到一个excel的不同sheet def merge_excel(p_path, s_path, m_path): writer = pd.ExcelWriter(m_path) if os.path.isfile(p ...
分类:其他好文   时间:2021-01-08 11:37:17    阅读次数:0
Linux忘记密码如何修改密码
1.Linux开机进入如下图所示界面按tab切换到下一行,然后按e 2.按向下键,找到Linux16那一行,把ro 改成,rw init=/sysroot/bin/bash。同时按住Ctrl+X键。系统进入emergency模式。 3.输入命令:chroot /sysroot/ #切换系统 输入pa ...
分类:系统相关   时间:2021-01-05 11:19:36    阅读次数:0
6727条   上一页 1 ... 5 6 7 8 9 ... 673 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!