码迷,mamicode.com
首页 >  
搜索关键字:sorted lists    ( 7805个结果
HIve 的函数
#Hive 的函数 ##1.系统内置函数 1)查看系统自带的函数 show functions; show functions like "date"; 2)显示自带的函数的用法 desc function upper; desc function 'current_date' 记住带下划线的需要加 ...
分类:其他好文   时间:2021-01-25 11:02:17    阅读次数: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
[Leetcode]4. Median of Two Sorted Arrays
题目描述 Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. Follow up: The overall run time ...
分类:其他好文   时间:2021-01-19 12:12:17    阅读次数:0
redis五种基本类型
String类型 set k1 aaa append k1 "bbb" getrange k1 0 -1 setrange k1 5(不能负数) ccc 替换,不够就补 object help object encoding k1 字符串是 embstr、raw、int incr k2 incrby ...
分类:其他好文   时间:2021-01-18 11:21:29    阅读次数: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
NIPS2020 论文下载 代码
1 # %% NIPS 2020 论文信息下载 2 import json 3 import os 4 import re 5 6 import pandas as pd 7 import requests 8 import tqdm 9 from bs4 import BeautifulSoup ...
分类:其他好文   时间:2021-01-12 10:46:54    阅读次数:0
python中对列表去重复
1、 >>> test1 = ["aaa","bbb","aaa","aaa","ccc","ccc","ddd","eee"] >>> test2 = [] >>> for i in test1: if i not in test2: test2.append(i) >>> test2 ['aaa ...
分类:编程语言   时间:2021-01-05 10:42:44    阅读次数:0
ubuntu 更新python,从3.5更新到3.7
查看 python3版本 python3 --version 安装python3.7 sudo apt-get install python3.7 报错如下: Reading package lists... Done Building dependency tree Reading state i ...
分类:编程语言   时间:2020-12-30 10:44:34    阅读次数:0
四大高阶函数
四大高阶函数: map、reduce、filter、sorted 1.map函数: 根据提供的函数对指定序列做映射 使用可迭代对象(指定的序列)中的每个元素调用函数,将返回值作为新可迭代对象元素;返回值为新的可迭代对象。 map函数的参数第一个为自定义的函数,这里没有括号 第二个参数不仅仅是列表类型 ...
分类:其他好文   时间:2020-12-23 11:40:13    阅读次数:0
7805条   上一页 1 ... 4 5 6 7 8 ... 781 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!